2026-01-24 12:24:26 +09:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
2026-01-25 18:47:35 +09:00
|
|
|
import 'app_root.dart';
|
|
|
|
|
|
2026-01-24 12:24:26 +09:00
|
|
|
void main() {
|
|
|
|
|
runApp(const SmartSerowApp());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class SmartSerowApp extends StatelessWidget {
|
|
|
|
|
const SmartSerowApp({super.key});
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return MaterialApp(
|
|
|
|
|
title: 'Smart Serow',
|
|
|
|
|
debugShowCheckedModeBanner: false,
|
|
|
|
|
theme: ThemeData(
|
|
|
|
|
colorScheme: ColorScheme.fromSeed(
|
|
|
|
|
seedColor: Colors.teal,
|
|
|
|
|
brightness: Brightness.dark,
|
|
|
|
|
),
|
|
|
|
|
useMaterial3: true,
|
|
|
|
|
),
|
2026-01-25 00:34:01 +09:00
|
|
|
home: const AppRoot(),
|
2026-01-24 12:24:26 +09:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|