feat: 收到的赞

This commit is contained in:
guozhigq
2024-06-16 17:53:46 +08:00
parent 1ebbdfb6ca
commit b5ff6d1418
15 changed files with 636 additions and 24 deletions

View File

@ -0,0 +1,3 @@
import 'package:get/get.dart';
class MessageSystemController extends GetxController {}

View File

@ -0,0 +1,4 @@
library message_system;
export './controller.dart';
export './view.dart';

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('系统通知'),
),
);
}
}