horizech_flutter_common 1.2.0 copy "horizech_flutter_common: ^1.2.0" to clipboard
horizech_flutter_common: ^1.2.0 copied to clipboard

Platformweb

Horizech Flutter Common library which contains elements used in all Horizech Flutter applications like themes and other UI elements.

horizech_flutter_common #

Horizech Flutter Common library

Features #

Contains themes and other elements common to all Horizech applications

Getting started #

This package works for applications made using flutter_up package so please make sure you are following flutter_up documentation when setting up your project

Usage #

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return UpApp(
      theme: HorizechCommon().themes.theme2024Dark, // This theme is provided by horizech_flutter_common package
      initialRoute: '/home',
      upRoutes: [
        UpRoute(
          path: '/home',
          pageBuilder: (BuildContext context, UpRouterState state) =>
              const HomePage(),
        )
      ],
      title: 'ThemeApp',
    );
  }
}

Additional information #

Note: This package is meant to be used by Horizech company applications so we will not provide any help or support to third party users.

1
likes
140
pub points
14%
popularity

Publisher

verified publisherhorizech.com

Horizech Flutter Common library which contains elements used in all Horizech Flutter applications like themes and other UI elements.

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_up

More

Packages that depend on horizech_flutter_common