lazyui 4.0.0-rc.1 lazyui: ^4.0.0-rc.1 copied to clipboard
LazyUi is a collection of widgets and utilities designed to simplify and speed up the app development process with Flutter.
import 'package:flutter/material.dart';
import 'package:lazyui/lazyui.dart';
import 'src/screens/home/views/home_view.dart';
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: 'LazyUI',
theme: LzTheme.light,
home: const HomeView(),
);
}
}