playWith/apps/app/lib/main.dart

22 lines
438 B
Dart
Raw Normal View History

2025-11-21 17:58:56 +09:00
import 'package:flutter/material.dart';
2025-11-21 18:04:15 +09:00
import 'intro_screen.dart';
2025-11-21 17:58:56 +09:00
void main() {
2025-11-21 18:04:15 +09:00
runApp(const PlayWithApp());
2025-11-21 17:58:56 +09:00
}
2025-11-21 18:04:15 +09:00
class PlayWithApp extends StatelessWidget {
const PlayWithApp({super.key});
2025-11-21 17:58:56 +09:00
@override
Widget build(BuildContext context) {
return MaterialApp(
2025-11-21 18:04:15 +09:00
title: 'PlayWith',
2025-11-21 17:58:56 +09:00
theme: ThemeData(
2025-11-21 18:04:15 +09:00
primarySwatch: Colors.blue,
useMaterial3: true,
2025-11-21 17:58:56 +09:00
),
2025-11-21 18:04:15 +09:00
home: const IntroScreen(),
2025-11-21 17:58:56 +09:00
);
}
2025-11-21 18:04:15 +09:00
}