Last updated:
0 purchases
quick app generator
quick_app_generator #
installation #
flutter pub add quick_app_generator
flutter pub get
copied to clipboard
usage #
main(){
runApp(
QuickApp(QuickPage(YOUR_WIDGET))
);
}
copied to clipboard
or use quickAppGenerator
Widget quickAppGenerator(
{required Widget screen,
ThemeData? theme,
Function(BuildContext)? buildContextReceiver}) {
return QuickApp(
page: QuickPage(body: screen),
theme_: theme,
buildContextReceiver: buildContextReceiver);}
copied to clipboard
License #
This project is licensed under the MIT License - see the LICENSE file for details
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.