update 251121

This commit is contained in:
2025-11-21 18:43:39 +09:00
parent 125bf25080
commit d9fd5458ed
2 changed files with 20 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
import 'package:flutter/material.dart';
import 'package:whi_flutter/pages/login.dart';
import 'package:whi_flutter/pages/signup.dart';
void main() {
runApp(const MainApp());
@@ -18,7 +19,7 @@ class MainApp extends StatelessWidget {
),
darkTheme: ThemeData.dark(useMaterial3: true),
themeMode: ThemeMode.system,
home: LoginPage(),
home: SignupPage(),
);
}
}