File tree Expand file tree Collapse file tree 3 files changed +5
-25
lines changed
packages/form_builder_validators Expand file tree Collapse file tree 3 files changed +5
-25
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 8.1.1] - 26-Apr-2022
2
+ * Fixed issue where email validator trims string before validation
3
+
1
4
## [ 8.1.0] - 13-Apr-2022
2
5
* Added Romanian (ro) language support
3
6
Original file line number Diff line number Diff line change @@ -17,32 +17,9 @@ class MyApp extends StatelessWidget {
17
17
title: 'Form Builder Validators Demo' ,
18
18
theme: ThemeData (primarySwatch: Colors .blue),
19
19
home: const HomePage (),
20
- supportedLocales: const [
21
- Locale ('ar' ),
22
- Locale ('bn' ),
23
- Locale ('ca' ),
24
- Locale ('de' ),
25
- Locale ('en' ),
26
- Locale ('es' ),
27
- Locale ('et' ),
28
- Locale ('fa' ),
29
- Locale ('fr' ),
30
- Locale ('hu' ),
31
- Locale ('id' ),
32
- Locale ('it' ),
33
- Locale ('ja' ),
34
- Locale ('ko' ),
35
- Locale ('lo' ),
36
- Locale ('nl' ),
37
- Locale ('ro' ),
38
- Locale ('sw' ),
39
- Locale ('uk' ),
40
- Locale ('zh_Hans' ),
41
- Locale ('zh_Hant' ),
42
- ],
20
+ supportedLocales: [...FormBuilderLocalizations .delegate.supportedLocales],
43
21
localizationsDelegates: const [
44
22
...GlobalMaterialLocalizations .delegates,
45
- GlobalWidgetsLocalizations .delegate,
46
23
FormBuilderLocalizations .delegate,
47
24
],
48
25
);
Original file line number Diff line number Diff line change 1
1
name : form_builder_validators
2
2
description : This package provides common reusable FormFieldValidators for Flutter FormField widgets with internationalization
3
- version : 8.1.0
3
+ version : 8.1.1
4
4
homepage : https://github.com/danvick/flutter_form_builder
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments