fix(app): 修复 ShareBottomSheet nullable 检查

This commit is contained in:
iven
2026-06-01 23:06:39 +08:00
parent 4c743e150e
commit f0921d554c

View File

@@ -22,7 +22,7 @@ class ShareBottomSheet extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final hasClass = classId != null && classId.isNotEmpty; final hasClass = classId != null && classId!.isNotEmpty;
final theme = Theme.of(context); final theme = Theme.of(context);
return Container( return Container(