Skip to content

Commit b9484f2

Browse files
committed
chore: Update templates
1 parent 9e2aae4 commit b9484f2

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

templates/msm1/view.dart.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ part of '___SCREEN_FILE___';
66
final class _View extends T___SCREEN_CLASS___View {
77
@override
88
Widget body(BuildContext context) {
9-
return Column(
10-
children: [
11-
// ...
12-
],
13-
);
9+
return const Placeholder();
1410
}
1511
}
1612
```

templates/msm_v2/access.dart.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
99
//.title~
1010
11-
import '/_common.dart';
11+
import 'package:df_screen/df_screen.dart';
12+
13+
import '_index.g.dart';
1214
1315
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
1416

templates/msm_v2/view.dart.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@ final class _View extends T___SCREEN_CLASS___View {
1010
1111
@override
1212
Widget body(BuildContext context) {
13-
return Column(
14-
children: [
15-
// ...
16-
],
17-
);
13+
return const Placeholder();
1814
}
1915
}
2016
```

0 commit comments

Comments
 (0)