File tree Expand file tree Collapse file tree 6 files changed +11
-11
lines changed
packages/form_builder_validators Expand file tree Collapse file tree 6 files changed +11
-11
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 7.9.0] - 04-Apr-2022
2
+ * Added Bangla (bn) language support
3
+
1
4
## [ 7.8.0] - 29-Mar-2022
2
5
* Added Estonian (et) language support
3
6
* Improved and corrected Arabic translations
Original file line number Diff line number Diff line change 21
21
<key >CFBundleVersion </key >
22
22
<string >1.0 </string >
23
23
<key >MinimumOSVersion </key >
24
- <string >8 .0 </string >
24
+ <string >9 .0 </string >
25
25
</dict >
26
26
</plist >
Original file line number Diff line number Diff line change 3
3
archiveVersion = 1;
4
4
classes = {
5
5
};
6
- objectVersion = 46 ;
6
+ objectVersion = 50 ;
7
7
objects = {
8
8
9
9
/* Begin PBXBuildFile section */
127
127
97C146E61CF9000F007C117D /* Project object */ = {
128
128
isa = PBXProject;
129
129
attributes = {
130
- LastUpgradeCheck = 1020 ;
130
+ LastUpgradeCheck = 1300 ;
131
131
ORGANIZATIONNAME = "";
132
132
TargetAttributes = {
133
133
97C146ED1CF9000F007C117D = {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<Scheme
3
- LastUpgradeVersion = " 1020 "
3
+ LastUpgradeVersion = " 1300 "
4
4
version = " 1.3" >
5
5
<BuildAction
6
6
parallelizeBuildables = " YES"
Original file line number Diff line number Diff line change @@ -13,11 +13,10 @@ class MyApp extends StatelessWidget {
13
13
Widget build (BuildContext context) {
14
14
return MaterialApp (
15
15
title: 'Form Builder Validators Demo' ,
16
- theme: ThemeData (
17
- primarySwatch: Colors .blue,
18
- ),
16
+ theme: ThemeData (primarySwatch: Colors .blue),
19
17
home: const MyHomePage (),
20
18
supportedLocales: const [
19
+ Locale ('bn' ),
21
20
Locale ('de' ),
22
21
Locale ('en' ),
23
22
Locale ('es' ),
@@ -46,9 +45,7 @@ class _MyHomePageState extends State<MyHomePage> {
46
45
@override
47
46
Widget build (BuildContext context) {
48
47
return Scaffold (
49
- appBar: AppBar (
50
- title: const Text ('Form Builder Validators' ),
51
- ),
48
+ appBar: AppBar (title: const Text ('Form Builder Validators' )),
52
49
body: Padding (
53
50
padding: const EdgeInsets .all (8.0 ),
54
51
child: Column (
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 : 7.8 .0
3
+ version : 7.9 .0
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