We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9a124b commit cf14524Copy full SHA for cf14524
templates/v5/view.dart.md
@@ -3,7 +3,7 @@ part of '___SCREEN_FILE___';
3
4
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
5
6
-final class _View extends T___SCREEN_CLASS___View {
+final class _View extends TAdaptive___SCREEN_CLASS___View {
7
//
8
9
@@ -13,4 +13,18 @@ final class _View extends T___SCREEN_CLASS___View {
13
return const Placeholder();
14
}
15
16
+
17
+// Or use the simpler version below, that has no adaptive support:
18
+/*
19
+final class _View extends T___SCREEN_CLASS___View {
20
+ //
21
22
23
24
+ @override
25
+ Widget build(BuildContext context) {
26
+ return const Placeholder();
27
+ }
28
+}
29
+*/
30
```
0 commit comments