| 
									
										
										
										
											2020-02-27 17:24:45 +01:00
										 |  |  | import 'package:aidedejeu_flutter/widgets/homepage.dart'; | 
					
						
							| 
									
										
										
										
											2020-02-14 01:36:31 +01:00
										 |  |  | import 'package:flutter/material.dart'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void main() => runApp(MyApp()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class MyApp extends StatelessWidget { | 
					
						
							|  |  |  |   @override | 
					
						
							|  |  |  |   Widget build(BuildContext context) { | 
					
						
							|  |  |  |     return MaterialApp( | 
					
						
							| 
									
										
										
										
											2020-02-22 03:22:41 +01:00
										 |  |  |       title: 'Haches & Dés', | 
					
						
							| 
									
										
										
										
											2020-02-14 01:36:31 +01:00
										 |  |  |       theme: ThemeData( | 
					
						
							| 
									
										
										
										
											2020-02-22 03:22:41 +01:00
										 |  |  |         primarySwatch: Colors.deepOrange, | 
					
						
							| 
									
										
										
										
											2020-02-28 17:59:22 +01:00
										 |  |  |         appBarTheme: AppBarTheme( | 
					
						
							|  |  |  |           color: Colors.white, | 
					
						
							|  |  |  |           iconTheme: IconThemeData(color: Colors.black), | 
					
						
							|  |  |  |           textTheme: TextTheme( | 
					
						
							|  |  |  |               headline6: TextStyle(fontSize: 28.0, color: Colors.black, fontWeight: FontWeight.bold, fontFamily: 'Cinzel')), | 
					
						
							|  |  |  |         ), | 
					
						
							|  |  |  |         brightness: Brightness.light, | 
					
						
							|  |  |  |         primaryColor: Colors.lightBlue[800], | 
					
						
							|  |  |  |         accentColor: Colors.cyan[600], | 
					
						
							|  |  |  |         fontFamily: 'LinuxLibertine', | 
					
						
							|  |  |  |         textTheme: TextTheme( | 
					
						
							|  |  |  |           headline5: TextStyle(fontSize: 28.0, fontWeight: FontWeight.bold, fontFamily: 'Cinzel'), | 
					
						
							|  |  |  |           headline6: TextStyle(fontSize: 22.0, fontStyle: FontStyle.normal), | 
					
						
							|  |  |  |           bodyText2: TextStyle(fontSize: 16.0), | 
					
						
							|  |  |  |         ), | 
					
						
							| 
									
										
										
										
											2020-02-14 01:36:31 +01:00
										 |  |  |       ), | 
					
						
							| 
									
										
										
										
											2020-02-14 10:37:58 +01:00
										 |  |  |       home: MyHomePage(id: 'index.md'), | 
					
						
							| 
									
										
										
										
											2020-02-14 01:36:31 +01:00
										 |  |  |     ); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } |