ui iniziale fatta con gemini

This commit is contained in:
2026-04-04 17:13:25 +02:00
parent a0cb3ec52a
commit c91415b8b3
13 changed files with 967 additions and 7 deletions

View File

@@ -1,4 +1,6 @@
import 'package:flutter/material.dart';
import 'package:flux/theme.dart';
import 'package:flux/ui/home_screen.dart';
void main() {
runApp(const MainApp());
@@ -9,12 +11,11 @@ class MainApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('Hello World!'),
),
),
return MaterialApp(
title: 'FLUX Gestionale',
debugShowCheckedModeBanner: false,
theme: fluxDarkTheme, // Applica il tema FLUX
home: const HomeScreen(),
);
}
}