t_flutter_ui 0.0.9 copy "t_flutter_ui: ^0.0.9" to clipboard
t_flutter_ui: ^0.0.9 copied to clipboard

T-UI: A Flutter UI library for building beautiful and customizable UIs. (using GetX, Google Fonts, Loader Overlay, Flutter Spinkit)

Introduction #

Custom UI for flutter mobile & web

Features #

  • TApp
  • TPage
  • TRoute
  • TNavigationBar
  • TNavigationBarItem

Usage #

return TApp(
  title: 'T Flutter UI Example',
  routes: []
);

return TPage(
  saftTop: true,
  saftBottom: true,
   body: Column(
      children: [
        Spacer(),
        TNavigationBar(
          items: [
            TNavigationBarItemStyle1(
              icon: Icons.home,
              label: 'Home',
              selectedColor: Colors.red,
              isSelected: true,
              onTap: () {},
            ),
            TNavigationBarItemStyle2(
              icon: Icons.search,
              label: 'Search',
              isSelected: false,
              onTap: () {},
            ),
          ]
      ]
   );
);

return TNavigationBar(
  items: [
    TNavigationBarItemStyle1(), 
  ]
);

final route = TRoute(name: "", page: () => TPage());
1
likes
0
points
33
downloads

Publisher

unverified uploader

Weekly Downloads

T-UI: A Flutter UI library for building beautiful and customizable UIs. (using GetX, Google Fonts, Loader Overlay, Flutter Spinkit)

Homepage

License

unknown (license)

Dependencies

flutter, flutter_spinkit, get, google_fonts, loader_overlay

More

Packages that depend on t_flutter_ui