This commit is contained in:
2022-10-31 17:38:36 +08:00
parent afc58d10a3
commit 666da79fef
7 changed files with 49 additions and 7 deletions

View File

@@ -10,6 +10,11 @@ class UserSettingPrivacyPage extends StatefulWidget {
class _UserSettingPrivacyPageState extends State<UserSettingPrivacyPage> {
@override
Widget build(BuildContext context) {
return Container();
return Scaffold(
appBar: AppBar(
title: const Text('隐私权限'),
),
body: Container(),
);
}
}