Files
zh-chat-flutter/lib/views/user/setting/privacy/index_page.dart
2022-10-31 17:38:36 +08:00

21 lines
512 B
Dart

import 'package:flutter/material.dart';
class UserSettingPrivacyPage extends StatefulWidget {
const UserSettingPrivacyPage({Key? key}) : super(key: key);
@override
_UserSettingPrivacyPageState createState() => _UserSettingPrivacyPageState();
}
class _UserSettingPrivacyPageState extends State<UserSettingPrivacyPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('隐私权限'),
),
body: Container(),
);
}
}