plex 0.0.3  plex: ^0.0.3 copied to clipboard
plex: ^0.0.3 copied to clipboard
A UI Framework for the Flutter
Features #
- Create boilerplate code for an Application
- Built in login screen
- Built in User session manager
- Free useful widgets
- Free useful utilities
- Built in screens and pages
- Builtin form builder from model class
Getting started #
Install the plex in your application.
Usage #
void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(
    PlexApp(
      appLogo: Image.asset(imageHosiery),
      title: "Plex App",
      initialRoute: 'home',
      useAuthorization: true,
      onLogin: (email, pass) async {
        var user = PlexUser(<String, dynamic>{"Name": "Abdur Rahman"});
        return user;
      },
      routes: [
        PlexRoute("home", const HomeScreen()),
      ],
    ),
  );
}