File tree 18 files changed +148
-2
lines changed
18 files changed +148
-2
lines changed Original file line number Diff line number Diff line change 9
9
.history
10
10
.svn /
11
11
12
+ # Mason
13
+ .mason /
14
+ mason-lock.json
15
+
12
16
# IntelliJ related
13
17
* .iml
14
18
* .ipr
Original file line number Diff line number Diff line change @@ -134,6 +134,7 @@ analyzer:
134
134
- ' **/*.g.dart'
135
135
- ' **/*.gen.dart'
136
136
- ' **/*.gr.dart'
137
+ - ' bricks'
137
138
- ' lib/generated_plugin_registrant.dart'
138
139
errors :
139
140
invalid_annotation_target : ignore
Original file line number Diff line number Diff line change
1
+ bricks :
2
+ xl_cubit_screen :
3
+ path : xl_cubit_screen
4
+ xl_model_freezed :
5
+ path : xl_model_freezed
Original file line number Diff line number Diff line change
1
+ # 0.1.0+1
2
+
3
+ - TODO: Describe initial release.
Original file line number Diff line number Diff line change
1
+ TODO: Add your license here.
Original file line number Diff line number Diff line change
1
+ # xl_screen
2
+
3
+ [ ![ Powered by Mason] ( https://img.shields.io/endpoint?url=https%3A%2F%2Ftinyurl.com%2Fmason-badge )] ( https://github.com/felangel/mason )
4
+
5
+ A new brick created with the Mason CLI.
6
+
7
+ _ Generated by [ mason] [ 1 ] 🧱_
8
+
9
+ ## Getting Started 🚀
10
+
11
+ This is a starting point for a new brick.
12
+ A few resources to get you started if this is your first brick template:
13
+
14
+ - [ Official Mason Documentation] [ 2 ]
15
+ - [ Code generation with Mason Blog] [ 3 ]
16
+ - [ Very Good Livestream: Felix Angelov Demos Mason] [ 4 ]
17
+
18
+ [ 1 ] : https://github.com/felangel/mason
19
+ [ 2 ] : https://github.com/felangel/mason/tree/master/packages/mason_cli#readme
20
+ [ 3 ] : https://verygood.ventures/blog/code-generation-with-mason
21
+ [ 4 ] : https://youtu.be/G4PTjA6tpTU
Original file line number Diff line number Diff line change
1
+ import 'package:bloc/bloc.dart' ;
2
+ import 'package:freezed_annotation/freezed_annotation.dart' ;
3
+
4
+ part '{{name.snakeCase()}}_state.dart' ;
5
+
6
+ part '{{name.snakeCase()}}_cubit.freezed.dart' ;
7
+
8
+ class {{name.pascalCase ()}}Cubit extends Cubit <{{name.pascalCase()}}State > {
9
+ {{name.pascalCase ()}}Cubit () : super (const {{name.pascalCase ()}}State .state ());
10
+ }
Original file line number Diff line number Diff line change
1
+ import 'package:flutter/widgets.dart' ;
2
+ import 'package:flutter_bloc/flutter_bloc.dart' ;
3
+
4
+ import '{{name.snakeCase()}}_cubit.dart' ;
5
+
6
+ class {{name.pascalCase ()}}Screen extends StatelessWidget {
7
+ const {{name.pascalCase ()}}Screen ({Key ? key}) : super (key: key);
8
+
9
+ @override
10
+ Widget build (BuildContext context) => BlocProvider (
11
+ create: (_) => {{name.pascalCase ()}}Cubit (),
12
+ child: _{{name.pascalCase ()}}ContentScreen (),
13
+ );
14
+ }
15
+
16
+ class _{{name.pascalCase ()}}ContentScreen extends StatelessWidget {
17
+ @override
18
+ Widget build (BuildContext context) => Container ();
19
+ }
Original file line number Diff line number Diff line change
1
+ part of '{{name.snakeCase()}}_cubit.dart' ;
2
+
3
+ @freezed
4
+ class {{name.pascalCase ()}}State with _${{name.pascalCase ()}}State {
5
+ const factory {{name.pascalCase ()}}State .state () = _{{name.pascalCase ()}}State ;
6
+ }
Original file line number Diff line number Diff line change
1
+ name : xl_cubit_screen
2
+ description : A screen which uses Cubit for state management, following Xmartlabs' standards.
3
+
4
+ version : 0.1.0+1
5
+
6
+ environment :
7
+ mason : " >=0.1.0-dev.26 <0.1.0"
8
+
9
+ vars :
10
+ name :
11
+ type : string
12
+ description : Your screen/feature name
13
+ default : xl
14
+ prompt : What is your screen name?
Original file line number Diff line number Diff line change
1
+ # 0.1.0+1
2
+
3
+ - TODO: Describe initial release.
Original file line number Diff line number Diff line change
1
+ TODO: Add your license here.
Original file line number Diff line number Diff line change
1
+ # xl_model_freezed
2
+
3
+ [ ![ Powered by Mason] ( https://img.shields.io/endpoint?url=https%3A%2F%2Ftinyurl.com%2Fmason-badge )] ( https://github.com/felangel/mason )
4
+
5
+ A new brick created with the Mason CLI.
6
+
7
+ _ Generated by [ mason] [ 1 ] 🧱_
8
+
9
+ ## Getting Started 🚀
10
+
11
+ This is a starting point for a new brick.
12
+ A few resources to get you started if this is your first brick template:
13
+
14
+ - [ Official Mason Documentation] [ 2 ]
15
+ - [ Code generation with Mason Blog] [ 3 ]
16
+ - [ Very Good Livestream: Felix Angelov Demos Mason] [ 4 ]
17
+
18
+ [ 1 ] : https://github.com/felangel/mason
19
+ [ 2 ] : https://github.com/felangel/mason/tree/master/packages/mason_cli#readme
20
+ [ 3 ] : https://verygood.ventures/blog/code-generation-with-mason
21
+ [ 4 ] : https://youtu.be/G4PTjA6tpTU
Original file line number Diff line number Diff line change
1
+ import 'package:freezed_annotation/freezed_annotation.dart' ;
2
+
3
+ part '{{name.snakeCase()}}.freezed.dart' ;
4
+
5
+ part '{{name.snakeCase()}}.g.dart' ;
6
+
7
+ @freezed
8
+ class {{name.pascalCase ()}} with _${{name.pascalCase ()}} {
9
+ @JsonSerializable ()
10
+ factory {{name.pascalCase ()}}({
11
+
12
+ }) = _{{name.pascalCase ()}};
13
+
14
+ factory {{name.pascalCase ()}}.fromJson (Map <String , dynamic > json) =>
15
+ _${{name.pascalCase ()}}FromJson (json);
16
+ }
Original file line number Diff line number Diff line change
1
+ name : xl_model_freezed
2
+ description : Generates boilerplate for a Freezed model.
3
+
4
+ version : 0.1.0+1
5
+
6
+ environment :
7
+ mason : " >=0.1.0-dev.26 <0.1.0"
8
+
9
+ vars :
10
+ name :
11
+ type : string
12
+ description : Your model name
13
+ default : Dash
14
+ prompt : What is your model name?
Original file line number Diff line number Diff line change 42
42
43
43
desc "**Lint: Check code format**"
44
44
lane :lint_format do
45
- flutter_command ( command : "format --set-exit-if-changed ." )
45
+ # https://github.com/dart-lang/dart_style/issues/864#issuecomment-1092199174
46
+ flutter_command ( command : "format --set-exit-if-changed lib" )
46
47
end
47
48
48
49
desc "**Lint: Check code format**"
Original file line number Diff line number Diff line change
1
+ bricks :
2
+ xl_cubit_screen :
3
+ path : bricks/xl_cubit_screen
4
+ xl_model_freezed :
5
+ path : bricks/xl_model_freezed
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ echo ':: Sorting translation files ::'
9
9
fvm flutter pub run arb_utils sort lib/l10n/intl_en.arb;
10
10
11
11
echo ' :: Check code format ::'
12
- fvm flutter format --set-exit-if-changed . || error " Linter error: Invalid format"
12
+ # https://github.com/dart-lang/dart_style/issues/864#issuecomment-1092199174
13
+ fvm flutter format --set-exit-if-changed lib || error " Linter error: Invalid format"
13
14
14
15
echo ' :: Run linter ::'
15
16
fvm flutter analyze . || error " Linter error - Flutter Analyze error"
You can’t perform that action at this time.
0 commit comments