lazyui 4.3.0-rc.1.30 copy "lazyui: ^4.3.0-rc.1.30" to clipboard
lazyui: ^4.3.0-rc.1.30 copied to clipboard

LazyUi is a set of widgets and tools to speed up Flutter app development.

LazyUi #

LazyUi is a collection of widgets and utilities designed to simplify and speed up the app development process with Flutter. It's an essential tool for developers seeking cleaner code and quicker results.

Important

This project is a collection of functions and widgets created based on personal needs with the aim of free customization. There may still be many bugs and shortcomings when used.

Usage #

To use this plugin, add lazyui as a dependency in your pubspec.yaml file.

Get Started #

In your main.dart file, initialize LazyUi by calling the init method:

void main() {
    // init lazyui
    LazyUi.init();

    runApp(const MyApp());
}

class MyApp extends StatelessWidget {
    const MyApp({super.key});

    @override
    Widget build(BuildContext context) {
        return MaterialApp(
            title: 'App',
            theme: LzTheme.light,
            home: const HomeView()
        );
    }
}
copied to clipboard

This personal project provides documentation in the form of code examples, which can be found in the example section for more information and usage demos.

For more information and examples, see the example.

6
likes
150
points
1.85k
downloads

Publisher

unverified uploader

Weekly Downloads

2024.08.26 - 2025.03.10

LazyUi is a set of widgets and tools to speed up Flutter app development.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

cached_network_image, device_info_plus, flutter, flutter_svg, google_fonts, intl, path_provider, stack_trace, teledart

More

Packages that depend on lazyui