29 lines
		
	
	
		
			624 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			624 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:app/view/home.dart';
 | 
						|
import 'package:flutter/material.dart';
 | 
						|
 | 
						|
void main() {
 | 
						|
  runApp(
 | 
						|
    const MyApp(),
 | 
						|
  );
 | 
						|
}
 | 
						|
 | 
						|
class MyApp extends StatelessWidget {
 | 
						|
  const MyApp({super.key});
 | 
						|
 | 
						|
  // This widget is the root of your application.
 | 
						|
  @override
 | 
						|
  Widget build(BuildContext context) {
 | 
						|
    return MaterialApp(
 | 
						|
      debugShowCheckedModeBanner: false,
 | 
						|
      title: 'Bubatzkarte',
 | 
						|
      theme: ThemeData(
 | 
						|
        colorScheme: ColorScheme.fromSeed(
 | 
						|
            brightness: Brightness.dark,
 | 
						|
            seedColor: Colors.green
 | 
						|
        ),
 | 
						|
        useMaterial3: true,
 | 
						|
      ),
 | 
						|
      home: const HomeView(),
 | 
						|
    );
 | 
						|
  }
 | 
						|
} |