feat: 收到的赞

This commit is contained in:
guozhigq
2024-06-16 17:53:46 +08:00
parent 569f7c23fd
commit 779f7e7666
15 changed files with 636 additions and 24 deletions

View File

@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class MessageSystemPage extends StatefulWidget {
const MessageSystemPage({super.key});
@override
State<MessageSystemPage> createState() => _MessageSystemPageState();
}
class _MessageSystemPageState extends State<MessageSystemPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('系统通知'),
),
);
}
}