2024-02-10 18:29:41 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2024-02-10 19:57:17 +01:00
|
|
|
import 'nav_layout.dart';
|
|
|
|
|
2024-02-10 18:29:41 +01:00
|
|
|
void main() {
|
2024-02-10 19:57:17 +01:00
|
|
|
runApp(const SCNApp());
|
2024-02-10 18:29:41 +01:00
|
|
|
}
|
|
|
|
|
2024-02-10 19:57:17 +01:00
|
|
|
class SCNApp extends StatelessWidget {
|
|
|
|
const SCNApp({super.key});
|
2024-02-10 18:29:41 +01:00
|
|
|
|
|
|
|
// This widget is the root of your application.
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
2024-02-10 19:57:17 +01:00
|
|
|
title: 'SimpleCloudNotifier',
|
2024-02-10 18:29:41 +01:00
|
|
|
theme: ThemeData(
|
2024-02-10 19:57:17 +01:00
|
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
|
2024-02-10 18:29:41 +01:00
|
|
|
useMaterial3: true,
|
|
|
|
),
|
2024-02-10 19:57:17 +01:00
|
|
|
home: const SCNNavLayout(),
|
2024-02-10 18:29:41 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|