Stefan Galler

Results 5 comments of Stefan Galler

I fixed this issue by running the app in Xcode, clicking on the errors and selecting a development team for the corresponding libs.

@mudlee Looks like that MultiValidator assumes that your Validator is of type `String?`. So if you use it like `NotNullOrEmptyValidator(errorText: 'Required')` it would work. ``` class MultiValidator extends FieldValidator {...

That's an interesting approach. Thank you for your input :)

I encountered the same problem. I was able to work around it by using this approach: ```dart SingleChildScrollView( child: MasonryGridView( physics: NeverScrollableScrollPhysics(), shrinkWrap: true, ... ) ) ``` This causes...