"/" にファイルをアップロード
This commit is contained in:
25
main.dart
Normal file
25
main.dart
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'screens/home_screen.dart';
|
||||
|
||||
void main() {
|
||||
runApp(const SquadSimulatorApp());
|
||||
}
|
||||
|
||||
class SquadSimulatorApp extends StatelessWidget {
|
||||
const SquadSimulatorApp({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialApp(
|
||||
title: 'eFootball Squad Simulator',
|
||||
theme: ThemeData.dark(useMaterial3: true),
|
||||
home: const HomeScreen(),
|
||||
debugShowCheckedModeBanner: false,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user