Skip to content

Commit 8e0be5c

Browse files
committed
build 4
1 parent 1e7decb commit 8e0be5c

File tree

81 files changed

+244
-220
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+244
-220
lines changed

packages/generator_tests/test/doc/animated_url_list_output_test.dart

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class ReactiveAnimatedUrlLisOForm extends StatelessWidget {
103103
required this.form,
104104
required this.child,
105105
this.canPop,
106-
this.onPopInvoked,
106+
this.onPopInvokedWithResult,
107107
}) : super(key: key);
108108
109109
final Widget child;
@@ -112,7 +112,8 @@ class ReactiveAnimatedUrlLisOForm extends StatelessWidget {
112112
113113
final bool Function(FormGroup formGroup)? canPop;
114114
115-
final void Function(FormGroup formGroup, bool didPop)? onPopInvoked;
115+
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
116+
onPopInvokedWithResult;
116117
117118
static AnimatedUrlLisOForm? of(BuildContext context, {bool listen = true}) {
118119
if (listen) {
@@ -139,7 +140,7 @@ class ReactiveAnimatedUrlLisOForm extends StatelessWidget {
139140
stream: form.form.statusChanged,
140141
child: ReactiveFormPopScope(
141142
canPop: canPop,
142-
onPopInvoked: onPopInvoked,
143+
onPopInvokedWithResult: onPopInvokedWithResult,
143144
child: child,
144145
),
145146
);
@@ -160,7 +161,7 @@ class AnimatedUrlLisOFormBuilder extends StatefulWidget {
160161
this.model,
161162
this.child,
162163
this.canPop,
163-
this.onPopInvoked,
164+
this.onPopInvokedWithResult,
164165
required this.builder,
165166
this.initState,
166167
}) : super(key: key);
@@ -171,7 +172,8 @@ class AnimatedUrlLisOFormBuilder extends StatefulWidget {
171172
172173
final bool Function(FormGroup formGroup)? canPop;
173174
174-
final void Function(FormGroup formGroup, bool didPop)? onPopInvoked;
175+
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
176+
onPopInvokedWithResult;
175177
176178
final Widget Function(
177179
BuildContext context,
@@ -265,7 +267,7 @@ class _AnimatedUrlLisOFormBuilderState
265267
child: ReactiveFormBuilder(
266268
form: () => _formModel.form,
267269
canPop: widget.canPop,
268-
onPopInvoked: widget.onPopInvoked,
270+
onPopInvokedWithResult: widget.onPopInvokedWithResult,
269271
builder: (context, formGroup, child) =>
270272
widget.builder(context, _formModel, widget.child),
271273
child: widget.child,

packages/generator_tests/test/doc/animated_url_list_test.dart

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class ReactiveAnimatedUrlListForm extends StatelessWidget {
103103
required this.form,
104104
required this.child,
105105
this.canPop,
106-
this.onPopInvoked,
106+
this.onPopInvokedWithResult,
107107
}) : super(key: key);
108108
109109
final Widget child;
@@ -112,7 +112,8 @@ class ReactiveAnimatedUrlListForm extends StatelessWidget {
112112
113113
final bool Function(FormGroup formGroup)? canPop;
114114
115-
final void Function(FormGroup formGroup, bool didPop)? onPopInvoked;
115+
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
116+
onPopInvokedWithResult;
116117
117118
static AnimatedUrlListForm? of(BuildContext context, {bool listen = true}) {
118119
if (listen) {
@@ -139,7 +140,7 @@ class ReactiveAnimatedUrlListForm extends StatelessWidget {
139140
stream: form.form.statusChanged,
140141
child: ReactiveFormPopScope(
141142
canPop: canPop,
142-
onPopInvoked: onPopInvoked,
143+
onPopInvokedWithResult: onPopInvokedWithResult,
143144
child: child,
144145
),
145146
);
@@ -160,7 +161,7 @@ class AnimatedUrlListFormBuilder extends StatefulWidget {
160161
this.model,
161162
this.child,
162163
this.canPop,
163-
this.onPopInvoked,
164+
this.onPopInvokedWithResult,
164165
required this.builder,
165166
this.initState,
166167
}) : super(key: key);
@@ -171,7 +172,8 @@ class AnimatedUrlListFormBuilder extends StatefulWidget {
171172
172173
final bool Function(FormGroup formGroup)? canPop;
173174
174-
final void Function(FormGroup formGroup, bool didPop)? onPopInvoked;
175+
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
176+
onPopInvokedWithResult;
175177
176178
final Widget Function(
177179
BuildContext context,
@@ -265,7 +267,7 @@ class _AnimatedUrlListFormBuilderState
265267
child: ReactiveFormBuilder(
266268
form: () => _formModel.form,
267269
canPop: widget.canPop,
268-
onPopInvoked: widget.onPopInvoked,
270+
onPopInvokedWithResult: widget.onPopInvokedWithResult,
269271
builder: (context, formGroup, child) =>
270272
widget.builder(context, _formModel, widget.child),
271273
child: widget.child,

packages/generator_tests/test/doc/annotateless_output_test.dart

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class ReactiveAnnotatelessOForm extends StatelessWidget {
9494
required this.form,
9595
required this.child,
9696
this.canPop,
97-
this.onPopInvoked,
97+
this.onPopInvokedWithResult,
9898
}) : super(key: key);
9999
100100
final Widget child;
@@ -103,7 +103,8 @@ class ReactiveAnnotatelessOForm extends StatelessWidget {
103103
104104
final bool Function(FormGroup formGroup)? canPop;
105105
106-
final void Function(FormGroup formGroup, bool didPop)? onPopInvoked;
106+
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
107+
onPopInvokedWithResult;
107108
108109
static AnnotatelessOForm? of(BuildContext context, {bool listen = true}) {
109110
if (listen) {
@@ -130,7 +131,7 @@ class ReactiveAnnotatelessOForm extends StatelessWidget {
130131
stream: form.form.statusChanged,
131132
child: ReactiveFormPopScope(
132133
canPop: canPop,
133-
onPopInvoked: onPopInvoked,
134+
onPopInvokedWithResult: onPopInvokedWithResult,
134135
child: child,
135136
),
136137
);
@@ -151,7 +152,7 @@ class AnnotatelessOFormBuilder extends StatefulWidget {
151152
this.model,
152153
this.child,
153154
this.canPop,
154-
this.onPopInvoked,
155+
this.onPopInvokedWithResult,
155156
required this.builder,
156157
this.initState,
157158
}) : super(key: key);
@@ -162,7 +163,8 @@ class AnnotatelessOFormBuilder extends StatefulWidget {
162163
163164
final bool Function(FormGroup formGroup)? canPop;
164165
165-
final void Function(FormGroup formGroup, bool didPop)? onPopInvoked;
166+
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
167+
onPopInvokedWithResult;
166168
167169
final Widget Function(
168170
BuildContext context,
@@ -255,7 +257,7 @@ class _AnnotatelessOFormBuilderState extends State<AnnotatelessOFormBuilder> {
255257
child: ReactiveFormBuilder(
256258
form: () => _formModel.form,
257259
canPop: widget.canPop,
258-
onPopInvoked: widget.onPopInvoked,
260+
onPopInvokedWithResult: widget.onPopInvokedWithResult,
259261
builder: (context, formGroup, child) =>
260262
widget.builder(context, _formModel, widget.child),
261263
child: widget.child,

packages/generator_tests/test/doc/annotateless_test.dart

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class ReactiveAnnotatelessForm extends StatelessWidget {
9191
required this.form,
9292
required this.child,
9393
this.canPop,
94-
this.onPopInvoked,
94+
this.onPopInvokedWithResult,
9595
}) : super(key: key);
9696
9797
final Widget child;
@@ -100,7 +100,8 @@ class ReactiveAnnotatelessForm extends StatelessWidget {
100100
101101
final bool Function(FormGroup formGroup)? canPop;
102102
103-
final void Function(FormGroup formGroup, bool didPop)? onPopInvoked;
103+
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
104+
onPopInvokedWithResult;
104105
105106
static AnnotatelessForm? of(BuildContext context, {bool listen = true}) {
106107
if (listen) {
@@ -127,7 +128,7 @@ class ReactiveAnnotatelessForm extends StatelessWidget {
127128
stream: form.form.statusChanged,
128129
child: ReactiveFormPopScope(
129130
canPop: canPop,
130-
onPopInvoked: onPopInvoked,
131+
onPopInvokedWithResult: onPopInvokedWithResult,
131132
child: child,
132133
),
133134
);
@@ -148,7 +149,7 @@ class AnnotatelessFormBuilder extends StatefulWidget {
148149
this.model,
149150
this.child,
150151
this.canPop,
151-
this.onPopInvoked,
152+
this.onPopInvokedWithResult,
152153
required this.builder,
153154
this.initState,
154155
}) : super(key: key);
@@ -159,7 +160,8 @@ class AnnotatelessFormBuilder extends StatefulWidget {
159160
160161
final bool Function(FormGroup formGroup)? canPop;
161162
162-
final void Function(FormGroup formGroup, bool didPop)? onPopInvoked;
163+
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
164+
onPopInvokedWithResult;
163165
164166
final Widget Function(
165167
BuildContext context,
@@ -252,7 +254,7 @@ class _AnnotatelessFormBuilderState extends State<AnnotatelessFormBuilder> {
252254
child: ReactiveFormBuilder(
253255
form: () => _formModel.form,
254256
canPop: widget.canPop,
255-
onPopInvoked: widget.onPopInvoked,
257+
onPopInvokedWithResult: widget.onPopInvokedWithResult,
256258
builder: (context, formGroup, child) =>
257259
widget.builder(context, _formModel, widget.child),
258260
child: widget.child,

packages/generator_tests/test/doc/array_nullable_output_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class ReactiveArrayNullableOForm extends StatelessWidget {
116116
final bool Function(FormGroup formGroup)? canPop;
117117
118118
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
119-
onPopInvokedWithResult;
119+
onPopInvokedWithResult;
120120
121121
static ArrayNullableOForm? of(BuildContext context, {bool listen = true}) {
122122
if (listen) {
@@ -176,7 +176,7 @@ class ArrayNullableOFormBuilder extends StatefulWidget {
176176
final bool Function(FormGroup formGroup)? canPop;
177177
178178
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
179-
onPopInvokedWithResult;
179+
onPopInvokedWithResult;
180180
181181
final Widget Function(
182182
BuildContext context,

packages/generator_tests/test/doc/array_nullable_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class ReactiveArrayNullableForm extends StatelessWidget {
119119
final bool Function(FormGroup formGroup)? canPop;
120120
121121
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
122-
onPopInvokedWithResult;
122+
onPopInvokedWithResult;
123123
124124
static ArrayNullableForm? of(BuildContext context, {bool listen = true}) {
125125
if (listen) {
@@ -179,7 +179,7 @@ class ArrayNullableFormBuilder extends StatefulWidget {
179179
final bool Function(FormGroup formGroup)? canPop;
180180
181181
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
182-
onPopInvokedWithResult;
182+
onPopInvokedWithResult;
183183
184184
final Widget Function(
185185
BuildContext context,

packages/generator_tests/test/doc/create_output_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ class ReactiveMSICreateForm extends StatelessWidget {
165165
final bool Function(FormGroup formGroup)? canPop;
166166
167167
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
168-
onPopInvokedWithResult;
168+
onPopInvokedWithResult;
169169
170170
static MSICreateForm? of(BuildContext context, {bool listen = true}) {
171171
if (listen) {
@@ -222,7 +222,7 @@ class MSICreateFormBuilder extends StatefulWidget {
222222
final bool Function(FormGroup formGroup)? canPop;
223223
224224
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
225-
onPopInvokedWithResult;
225+
onPopInvokedWithResult;
226226
227227
final Widget Function(
228228
BuildContext context,

packages/generator_tests/test/doc/delivery_list_output_test.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ class ReactiveDeliveryListOForm extends StatelessWidget {
157157
final bool Function(FormGroup formGroup)? canPop;
158158
159159
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
160-
onPopInvokedWithResult;
160+
onPopInvokedWithResult;
161161
162162
static DeliveryListOForm? of(BuildContext context, {bool listen = true}) {
163163
if (listen) {
@@ -217,7 +217,7 @@ class DeliveryListOFormBuilder extends StatefulWidget {
217217
final bool Function(FormGroup formGroup)? canPop;
218218
219219
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
220-
onPopInvokedWithResult;
220+
onPopInvokedWithResult;
221221
222222
final Widget Function(
223223
BuildContext context,
@@ -2608,7 +2608,7 @@ class ReactiveStandaloneDeliveryPointForm extends StatelessWidget {
26082608
final bool Function(FormGroup formGroup)? canPop;
26092609
26102610
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
2611-
onPopInvokedWithResult;
2611+
onPopInvokedWithResult;
26122612
26132613
static StandaloneDeliveryPointForm? of(
26142614
BuildContext context, {
@@ -2671,7 +2671,7 @@ class StandaloneDeliveryPointFormBuilder extends StatefulWidget {
26712671
final bool Function(FormGroup formGroup)? canPop;
26722672
26732673
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
2674-
onPopInvokedWithResult;
2674+
onPopInvokedWithResult;
26752675
26762676
final Widget Function(
26772677
BuildContext context,

packages/generator_tests/test/doc/delivery_list_test.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class ReactiveDeliveryListForm extends StatelessWidget {
149149
final bool Function(FormGroup formGroup)? canPop;
150150
151151
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
152-
onPopInvokedWithResult;
152+
onPopInvokedWithResult;
153153
154154
static DeliveryListForm? of(BuildContext context, {bool listen = true}) {
155155
if (listen) {
@@ -209,7 +209,7 @@ class DeliveryListFormBuilder extends StatefulWidget {
209209
final bool Function(FormGroup formGroup)? canPop;
210210
211211
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
212-
onPopInvokedWithResult;
212+
onPopInvokedWithResult;
213213
214214
final Widget Function(
215215
BuildContext context,
@@ -2542,7 +2542,7 @@ class ReactiveStandaloneDeliveryPointForm extends StatelessWidget {
25422542
final bool Function(FormGroup formGroup)? canPop;
25432543
25442544
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
2545-
onPopInvokedWithResult;
2545+
onPopInvokedWithResult;
25462546
25472547
static StandaloneDeliveryPointForm? of(
25482548
BuildContext context, {
@@ -2605,7 +2605,7 @@ class StandaloneDeliveryPointFormBuilder extends StatefulWidget {
26052605
final bool Function(FormGroup formGroup)? canPop;
26062606
26072607
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
2608-
onPopInvokedWithResult;
2608+
onPopInvokedWithResult;
26092609
26102610
final Widget Function(
26112611
BuildContext context,

packages/generator_tests/test/doc/freezed_class_output_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class ReactiveFreezedClassOForm extends StatelessWidget {
117117
final bool Function(FormGroup formGroup)? canPop;
118118
119119
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
120-
onPopInvokedWithResult;
120+
onPopInvokedWithResult;
121121
122122
static FreezedClassOForm? of(BuildContext context, {bool listen = true}) {
123123
if (listen) {
@@ -177,7 +177,7 @@ class FreezedClassOFormBuilder extends StatefulWidget {
177177
final bool Function(FormGroup formGroup)? canPop;
178178
179179
final ReactiveFormPopInvokedWithResultCallback<dynamic>?
180-
onPopInvokedWithResult;
180+
onPopInvokedWithResult;
181181
182182
final Widget Function(
183183
BuildContext context,

0 commit comments

Comments
 (0)