feat: Add navigation and data entry page
This commit is contained in:
commit
d1b97dc621
68 changed files with 1769 additions and 0 deletions
24
lib/main.dart
Normal file
24
lib/main.dart
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:intl/date_symbol_data_local.dart';
|
||||
import 'navigator/view.dart';
|
||||
|
||||
void main() {
|
||||
initializeDateFormatting("de_CH", null);
|
||||
runApp(const MyApp());
|
||||
}
|
||||
|
||||
class MyApp extends StatelessWidget {
|
||||
const MyApp({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialApp(
|
||||
title: 'Flutter Demo',
|
||||
|
||||
theme: ThemeData(
|
||||
primarySwatch: Colors.blue,
|
||||
),
|
||||
home: const SafeArea(child: NavigatorPage()),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue