fix(app): 修复 ShareBottomSheet nullable 检查
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user