1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-29 22:45:44 +00:00
AideDeJeu/aidedejeu_flutter/lib/main.dart

19 lines
404 B
Dart
Raw Normal View History

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-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
);
}
}