lazyui 1.0.4 copy "lazyui: ^1.0.4" to clipboard
lazyui: ^1.0.4 copied to clipboard

LazyUi is a collection of widgets and utilities designed to simplify and speed up the app development process with Flutter.

example/lib/main.dart

import 'package:example/app/screens/app_intro.dart';
import 'package:flutter/material.dart';
import 'package:lazyui/lazyui.dart';

import 'app/theme.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  LazyUi.config();

  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'LazyUi',
      theme: appTheme,
      home: const AppIntro(),
      builder: (BuildContext context, Widget? widget) {
        // use LazyUi.builder to wrap your widget
        // so that you can use LzToast, setting maxScalingFontSize
        return LazyUi.builder(context, widget, maxScalingFontSize: 1.1);
      },
    );
  }
}
6
likes
0
points
1.18k
downloads

Publisher

unverified uploader

Weekly Downloads

LazyUi is a collection of widgets and utilities designed to simplify and speed up the app development process with Flutter.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

animator, cached_network_image, custom_refresh_indicator, device_info_plus, flutter, flutter_spinkit, flutter_svg, google_fonts, http, intl, path_provider, stack_trace, teledart, tutorial_coach_mark

More

Packages that depend on lazyui