mirror of
				https://github.com/Nioux/AideDeJeu.git
				synced 2025-10-30 23:16:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			404 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			404 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:aidedejeu_flutter/widgets/homepage.dart';
 | |
| import 'package:flutter/material.dart';
 | |
| 
 | |
| void main() => runApp(MyApp());
 | |
| 
 | |
| class MyApp extends StatelessWidget {
 | |
|   @override
 | |
|   Widget build(BuildContext context) {
 | |
|     return MaterialApp(
 | |
|       title: 'Haches & Dés',
 | |
|       theme: ThemeData(
 | |
|         primarySwatch: Colors.deepOrange,
 | |
|       ),
 | |
|       home: MyHomePage(id: 'index.md'),
 | |
|     );
 | |
|   }
 | |
| }
 | |
| 
 | 
