flutter_framework

Last updated:

0 purchases

flutter_framework Image
flutter_framework Images
Add to Cart

Description:

flutter framework

This framework is use to build a whole universal app with headless cms.
Features #
Use to build a ecosystem.
Usage #
See example
import "source/app.dart";

void main() {
UniversalApp().run();
}

class UniversalApp extends MaterialApplication {
UniversalApp({super.key});

@override
RouterData setupRouter() {
Map<String, IPage Function()> routes = buildRouter(app.pages);
routes[Routes.home] = () => HomePage();
return RouterData(routes);
}
}

class HomePage extends IStatelessPage {
HomePage({super.key});

@override
Widget render(BuildContext context) {
return FFColumn(children: [
FFContainer(
marginBottom: 20,
child: FFHeadlineMediumText("Welcome back to work")),
FFContainer(child: FFHeadlineSmallText("Let's work hard together!"))
]);
}
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.