mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-29 22:45:44 +00:00
16 lines
385 B
Dart
16 lines
385 B
Dart
import 'package:aidedejeu_flutter/theme.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: mainTheme(),
|
|
home: HomePage(),
|
|
);
|
|
}
|
|
}
|