You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
648 B
Dart
26 lines
648 B
Dart
import 'package:flutter/material.dart';
|
|
import 'screens/home.dart';
|
|
|
|
void main() => runApp(const ZeitschreibungApp());
|
|
|
|
class ZeitschreibungApp extends StatelessWidget {
|
|
const ZeitschreibungApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Zeitschreibung',
|
|
theme: ThemeData(
|
|
colorSchemeSeed: const Color(0xFF3B82F6),
|
|
useMaterial3: true,
|
|
inputDecorationTheme: const InputDecorationTheme(
|
|
border: OutlineInputBorder(),
|
|
isDense: true,
|
|
),
|
|
),
|
|
home: const HomeScreen(),
|
|
debugShowCheckedModeBanner: false,
|
|
);
|
|
}
|
|
}
|