Skip to content

Commit 9c4f514

Browse files
committed
SDK Queuing System #3
1 parent a349531 commit 9c4f514

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

example/lib/main.dart

+13-12
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,19 @@ class _MyAppState extends State<MyApp> {
3434
showPanel: true,
3535
wrapperBuilder: (context, child) {
3636
return MaterialApp(
37-
home: Column(
38-
children: [
39-
ElevatedButton.icon(
40-
onPressed: () {
41-
Codelessly.instance.reset(clearCache: true);
42-
},
43-
icon: const Icon(Icons.refresh),
44-
label: const Text('Reset'),
45-
),
46-
if (child != null) child,
47-
],
48-
),
37+
home: child,
38+
// home: Column(
39+
// children: [
40+
// ElevatedButton.icon(
41+
// onPressed: () {
42+
// Codelessly.instance.reset(clearCache: true);
43+
// },
44+
// icon: const Icon(Icons.refresh),
45+
// label: const Text('Reset'),
46+
// ),
47+
// if (child != null) child,
48+
// ],
49+
// ),
4950
);
5051
},
5152
stories: [

0 commit comments

Comments
 (0)