lazyui 4.3.1
lazyui: ^4.3.1 copied to clipboard
LazyUi is a set of widgets and tools to speed up Flutter app development.
import 'package:flutter/material.dart';
import 'package:lazyui/lazyui.dart';
import 'pages/home_view.dart';
void main() {
LazyUi.init(primaryColor: Colors.green, locale: 'ID', backBlur: false);
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return LzTheme(
child: (theme) => MaterialApp(
title: 'LazyUi',
theme: theme,
home: const HomeView(),
builder: (context, child) {
return FontScaling(child: Toast.builder(context, child));
},
));
}
}