All Projects → aloisdeniel → measurer

aloisdeniel / measurer

Licence: MIT license
A widget that measure the size of its child.

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to measurer

kde-plasmoid-betterinlineclock
Your usual clock widget, just way better and on a single line!
Stars: ✭ 18 (-55%)
Mutual labels:  widget
LiquidEqualizerWidget
Modern 15-band equalizer for C++/Qt
Stars: ✭ 26 (-35%)
Mutual labels:  widget
develop
A simple tool to help elementary OS developers to develop their own apps and widgets.
Stars: ✭ 38 (-5%)
Mutual labels:  widget
cryptocoins-desklet-cinnamon
Cryptocurrency Ticker (Desklet) for Cinnamon Desktop that displays the current price for thousands of cryptocurrencies, and their daily percent changes.
Stars: ✭ 18 (-55%)
Mutual labels:  widget
proca
Widget to transform your website into a cutting-edge campaign in 10 min. multi-lingual, privacy first.
Stars: ✭ 29 (-27.5%)
Mutual labels:  widget
titik
A cross platform minimalistic text user interface
Stars: ✭ 112 (+180%)
Mutual labels:  widget
AndroidUiKit
uikit widget common baseview Adapter faster develop
Stars: ✭ 48 (+20%)
Mutual labels:  widget
infinite-carousel-flutter
Carousel in flutter. Supports infinite looping and gives control over anchor and velocity.
Stars: ✭ 24 (-40%)
Mutual labels:  widget
Covid-19 Ampel
Covid-19_Ampel | Zeigt neben der 7-Tage-Inzidenz weitere Infos zu einer Region.
Stars: ✭ 33 (-17.5%)
Mutual labels:  widget
fullcalendar-calendar
Web Component wrapper for FullCalendar
Stars: ✭ 21 (-47.5%)
Mutual labels:  widget
SvgViewerWidgetTWX
Thingworx widget for runtime display and manipulation of a SVG
Stars: ✭ 13 (-67.5%)
Mutual labels:  widget
flutter trianglify
Flutter library to generate beautiful triangle art views for android and ios.
Stars: ✭ 31 (-22.5%)
Mutual labels:  widget
Graphics32 RBC
Graphics Extension that extend of Graphics32 Library for Delphi XE6 and up (and maybe Lazarus) by Uğur PARLAYAN
Stars: ✭ 32 (-20%)
Mutual labels:  widget
nl.fokkezb.form
[UNMAINTAINED] Alloy TableView Form Widget
Stars: ✭ 43 (+7.5%)
Mutual labels:  widget
js-fileexplorer
A zero dependencies, customizable, pure Javascript widget for navigating, managing, uploading, and downloading files and folders or other hierarchical object structures on any modern web browser.
Stars: ✭ 124 (+210%)
Mutual labels:  widget
text-style-editor
Text style editor widget for flutter
Stars: ✭ 25 (-37.5%)
Mutual labels:  widget
flutter calendar view
A Flutter package allows you to easily implement all calendar UI and calendar event functionality. 👌🔝🎉
Stars: ✭ 219 (+447.5%)
Mutual labels:  widget
awesome-power widget
A Power widget for the Awesome Window Manager
Stars: ✭ 25 (-37.5%)
Mutual labels:  widget
floppy
🧩 Handling and maintain your UI view component easily
Stars: ✭ 55 (+37.5%)
Mutual labels:  widget
SwiftListView
Instagram style - Collection of simple & neutral list views for Swift
Stars: ✭ 17 (-57.5%)
Mutual labels:  widget

measurer

A widget that measure the size of its child.

Quickstart

@override
Widget build(BuildContext context) {
    return Measurer(
        onMeasure: (size,constraints) {
            print('Child new size: $size');
        },
        child: Child(),
    );
}

Usage

onMeasure

A callback to that is called each time the layout size of the child changes.

onPaintBoundsChanged

A callback to that is called each time the painting bound size (an absolute rectangle that contains all the pixels painted by the child) of the child changes.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].