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

@@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
class UserSettingMessagePage extends StatefulWidget {
const UserSettingMessagePage({Key? key}) : super(key: key);
@override
_UserSettingMessagePageState createState() => _UserSettingMessagePageState();
}
class _UserSettingMessagePageState extends State<UserSettingMessagePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('新消息与通知'),
),
body: Container(),
);
}
}