lumen_ui 0.0.3
lumen_ui: ^0.0.3 copied to clipboard
Lumen UI is an innovative open-source CLI tool for Flutter that solves the problem of bloated applications by generating UI components on demand. The project aims to create a modular approach where de [...]
import 'package:example/example_view.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
home: ExampleView(),
);
}
}