1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 15:06:06 +00:00
AideDeJeu/aidedejeu_flutter/lib/main.dart

17 lines
385 B
Dart
Raw Normal View History

2020-03-01 19:04:48 +01:00
import 'package:aidedejeu_flutter/theme.dart';
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-03-01 19:04:48 +01:00
theme: mainTheme(),
2020-02-29 01:40:05 +01:00
home: HomePage(),
2020-02-14 01:36:31 +01:00
);
}
}