From f0921d554c7a7013340b389304bf702f7d217f31 Mon Sep 17 00:00:00 2001 From: iven Date: Mon, 1 Jun 2026 23:06:39 +0800 Subject: [PATCH] =?UTF-8?q?fix(app):=20=E4=BF=AE=E5=A4=8D=20ShareBottomShe?= =?UTF-8?q?et=20nullable=20=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/lib/features/editor/widgets/share_bottom_sheet.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/features/editor/widgets/share_bottom_sheet.dart b/app/lib/features/editor/widgets/share_bottom_sheet.dart index 3f8a793..30d2e8a 100644 --- a/app/lib/features/editor/widgets/share_bottom_sheet.dart +++ b/app/lib/features/editor/widgets/share_bottom_sheet.dart @@ -22,7 +22,7 @@ class ShareBottomSheet extends StatelessWidget { @override Widget build(BuildContext context) { - final hasClass = classId != null && classId.isNotEmpty; + final hasClass = classId != null && classId!.isNotEmpty; final theme = Theme.of(context); return Container(