feat: fav note page

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-03-28 21:25:39 +08:00
parent da3f64feab
commit cc774015f9
15 changed files with 487 additions and 91 deletions

View File

@@ -18,11 +18,16 @@ class FavVideoPage extends StatefulWidget {
State<FavVideoPage> createState() => _FavVideoPageState();
}
class _FavVideoPageState extends State<FavVideoPage> {
class _FavVideoPageState extends State<FavVideoPage>
with AutomaticKeepAliveClientMixin {
final FavController _favController = Get.find<FavController>();
@override
bool get wantKeepAlive => true;
@override
Widget build(BuildContext context) {
super.build(context);
return refreshIndicator(
onRefresh: () async {
await _favController.onRefresh();