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
Yan Maniez 60d83137be Events
2020-02-27 17:24:45 +01:00

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