저장용

This commit is contained in:
girinb
2025-06-06 06:18:19 +09:00
commit b687722bd1
137 changed files with 7642 additions and 0 deletions

17
lib/more_page.dart Normal file
View File

@@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
class MorePage extends StatelessWidget {
const MorePage({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Text(
'More Page',
style: TextStyle(fontSize: 24),
),
),
);
}
}