flutter_flexui 0.0.2 copy "flutter_flexui: ^0.0.2" to clipboard
flutter_flexui: ^0.0.2 copied to clipboard

outdated

Flutter package for build Flexible and beautiful UI to considers different screen sizes.

flutter_flexui #

Flutter package for build Flexible UI for diference screens

Getting Started #

To use this package, add flutter_flexui as a dependency in your pubspec.yaml file.

dependencies:
  flutter_flexui: ^0.0.2

Example #

FlexRow

  FlexRow(
    colLg: 6,
    colMd: 3,
    colSm: 1,
    colMainAxisAlignment: MainAxisAlignment.spaceEvenly,
    colVerticalDirection: VerticalDirection.down,
    colMainAxisSize: MainAxisSize.max,
    rowMainAxisAlignment: MainAxisAlignment.spaceAround,
    rowVerticalDirection: VerticalDirection.down,
    rowMainAxisSize: MainAxisSize.max,
    children: <Widget>[
      Text('1'),
      Text('2'),
      Text('3'),
      Text('4'),
      Text('5'),
    ],);

FlexText

  FlexText(
    "Test",
    styleSm: TextStyle(fontWeight: FontWeight.w200, fontSize: 12),
    styleMd: TextStyle(fontWeight: FontWeight.w600, fontSize: 16),
    styleLg: TextStyle(fontWeight: FontWeight.w900, fontSize: 22),
    );

Authors #

This project developed by DipDev Studio Team: @Dimoshka
17
likes
0
pub points
46%
popularity

Publisher

verified publisherdip.dev

Flutter package for build Flexible and beautiful UI to considers different screen sizes.

Homepage
Repository (GitLab)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_flexui