1
0
mirror of https://github.com/flutter/samples.git synced 2026-07-17 06:21:41 +00:00

Fixup varfont_shader_puzzle, attempt #2 (#1563)

This commit is contained in:
Brett Morgan
2023-01-13 14:47:23 +10:00
committed by GitHub
parent 02a8b9cfbb
commit 2c7ffd4617
15 changed files with 84 additions and 75 deletions

View File

@@ -18,7 +18,7 @@ class LightboxedPanel extends StatefulWidget {
final Color cardBgColor;
const LightboxedPanel({
Key? key,
super.key,
required this.pageConfig,
required this.content,
this.onDismiss,
@@ -27,7 +27,7 @@ class LightboxedPanel extends StatefulWidget {
this.buildButton = true,
this.lightBoxBgColor = const Color.fromARGB(200, 255, 255, 255),
this.cardBgColor = Colors.white,
}) : super(key: key);
});
@override
State<LightboxedPanel> createState() => _LightboxedPanelState();