We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a349531 commit 9c4f514Copy full SHA for 9c4f514
example/lib/main.dart
@@ -34,18 +34,19 @@ class _MyAppState extends State<MyApp> {
34
showPanel: true,
35
wrapperBuilder: (context, child) {
36
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
+ home: child,
+ // home: Column(
+ // children: [
+ // ElevatedButton.icon(
+ // onPressed: () {
+ // Codelessly.instance.reset(clearCache: true);
+ // },
+ // icon: const Icon(Icons.refresh),
+ // label: const Text('Reset'),
+ // ),
+ // if (child != null) child,
+ // ],
49
50
);
51
},
52
stories: [
0 commit comments