feat: 投稿、番剧合集整理

This commit is contained in:
guozhigq
2024-04-06 15:26:53 +08:00
parent bec619111b
commit d4212f88c5
12 changed files with 458 additions and 510 deletions

View File

@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class RightDrawer extends StatefulWidget {
const RightDrawer({super.key});
@override
State<RightDrawer> createState() => _RightDrawerState();
}
class _RightDrawerState extends State<RightDrawer> {
@override
Widget build(BuildContext context) {
return Drawer(
shadowColor: Colors.transparent,
elevation: 0,
backgroundColor:
Theme.of(context).colorScheme.surface.withOpacity(0.8));
}
}