用户中心调整

This commit is contained in:
2022-10-26 10:29:16 +08:00
parent c10308bdff
commit 69f0a7a81e
14 changed files with 202 additions and 49 deletions

View File

@@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
class UserSafePage extends StatefulWidget {
const UserSafePage({Key? key}) : super(key: key);
@override
State<UserSafePage> createState() => _UserSafePageState();
}
class _UserSafePageState extends State<UserSafePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('安全设置'),
),
body: Container(),
);
}
}