flutter_extensions 0.1.0 copy "flutter_extensions: ^0.1.0" to clipboard
flutter_extensions: ^0.1.0 copied to clipboard

outdated

A new Flutter project.

flutter_extensions #

Dart #

Color #

Extensions color code we thank "TinyColor"

Iterable #

SizeCopier #

Copy the size of a widget on the screen ( copy height and width )

GlobalKey buttonBarKey = GlobalKey();
// ...
Scaffold(
  extendBody: true,
  body: SingleChildScrollView(
    child: Column(
      children: <Widget>[
        // ...
        SizeCopier(originalKey: buttonBarKey),
      ],
    ),
  ),
  bottomBar: ButtonBar(
    key: buttonBarKey,
    // ...
  );
);