This commit is contained in:
toly
2023-10-24 07:47:09 +08:00
parent 8a95ed4417
commit 0b3126182e
59 changed files with 6659 additions and 64 deletions

View File

@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
class SettingPage extends StatelessWidget {
const SettingPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body:Center(child: Text('SettingPage')));
}
}