plex 0.0.5 copy "plex: ^0.0.5" to clipboard
plex: ^0.0.5 copied to clipboard

A UI Framework for the Flutter

Features #

  1. Create boilerplate code for an Application
  2. Built in login screen
  3. Built in User session manager
  4. Free useful widgets
  5. Free useful utilities
  6. Built in screens and pages
  7. 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()),
      ],
    ),
  );
}
8
likes
0
pub points
49%
popularity

Publisher

unverified uploader

A UI Framework for the Flutter

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, get, http, intl, shared_preferences

More

Packages that depend on plex