quick_app_generator 1.0.0+2 copy "quick_app_generator: ^1.0.0+2" to clipboard
quick_app_generator: ^1.0.0+2 copied to clipboard

quickly generate a flutter app with input widget as body within safe area

quick_app_generator #

installation #

  flutter pub add quick_app_generator
  flutter pub get

usage #

main(){
  runApp(
      QuickApp(QuickPage(YOUR_WIDGET))
  );
}

or use quickAppGenerator

Widget quickAppGenerator(
    {required Widget screen,
    ThemeData? theme,
    Function(BuildContext)? buildContextReceiver}) {
  return QuickApp(
      page: QuickPage(body: screen),
      theme_: theme,
      buildContextReceiver: buildContextReceiver);}

License #

This project is licensed under the MIT License - see the LICENSE file for details

0
likes
120
pub points
0%
popularity

Publisher

unverified uploader

quickly generate a flutter app with input widget as body within safe area

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

cupertino_icons, flutter

More

Packages that depend on quick_app_generator