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,19 @@
import 'package:flutter/material.dart';
class MessageAtPage extends StatefulWidget {
const MessageAtPage({super.key});
@override
State<MessageAtPage> createState() => _MessageAtPageState();
}
class _MessageAtPageState extends State<MessageAtPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('@我的'),
),
);
}
}