Skip to content

Commit 625995b

Browse files
committed
chore: released form_builder_validators v7.9.0
1 parent 4d181fd commit 625995b

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

packages/form_builder_validators/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [7.9.0] - 04-Apr-2022
2+
* Added Bangla (bn) language support
3+
14
## [7.8.0] - 29-Mar-2022
25
* Added Estonian (et) language support
36
* Improved and corrected Arabic translations

packages/form_builder_validators/example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>8.0</string>
24+
<string>9.0</string>
2525
</dict>
2626
</plist>

packages/form_builder_validators/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 46;
6+
objectVersion = 50;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -127,7 +127,7 @@
127127
97C146E61CF9000F007C117D /* Project object */ = {
128128
isa = PBXProject;
129129
attributes = {
130-
LastUpgradeCheck = 1020;
130+
LastUpgradeCheck = 1300;
131131
ORGANIZATIONNAME = "";
132132
TargetAttributes = {
133133
97C146ED1CF9000F007C117D = {

packages/form_builder_validators/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1020"
3+
LastUpgradeVersion = "1300"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

packages/form_builder_validators/example/lib/main.dart

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@ class MyApp extends StatelessWidget {
1313
Widget build(BuildContext context) {
1414
return MaterialApp(
1515
title: 'Form Builder Validators Demo',
16-
theme: ThemeData(
17-
primarySwatch: Colors.blue,
18-
),
16+
theme: ThemeData(primarySwatch: Colors.blue),
1917
home: const MyHomePage(),
2018
supportedLocales: const [
19+
Locale('bn'),
2120
Locale('de'),
2221
Locale('en'),
2322
Locale('es'),
@@ -46,9 +45,7 @@ class _MyHomePageState extends State<MyHomePage> {
4645
@override
4746
Widget build(BuildContext context) {
4847
return Scaffold(
49-
appBar: AppBar(
50-
title: const Text('Form Builder Validators'),
51-
),
48+
appBar: AppBar(title: const Text('Form Builder Validators')),
5249
body: Padding(
5350
padding: const EdgeInsets.all(8.0),
5451
child: Column(

packages/form_builder_validators/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: form_builder_validators
22
description: This package provides common reusable FormFieldValidators for Flutter FormField widgets with internationalization
3-
version: 7.8.0
3+
version: 7.9.0
44
homepage: https://github.com/danvick/flutter_form_builder
55

66
environment:

0 commit comments

Comments
 (0)