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

outdated

Flutter package for build Flexible UI for diference screens

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.1

Example #

Main function

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text("Test"),
      ),
      body: Center(
        child: 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"),
          ],
        ),
      ),
    );
  }

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 UI for diference screens

Homepage
Repository (GitLab)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_flexui