mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-29 22:45:44 +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'),
|
|
);
|
|
}
|
|
}
|
|
|