Skip to content

Commit

Permalink
fix readme 9.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cedvdb committed Mar 27, 2024
1 parent 26ba4d0 commit a1e06e0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
## [9.2.1]
- fix readme

## [9.2.0]
- add missing translation messages
- add Hungarian localization messages
- fix RTL
- added `showDropdownIndicator`
- deprecate country button stylings properties in favor of one `countryButtonStyle` property
- [deprecate] country button stylings properties in favor of one `countryButtonStyle` property
- add showDropdownIcon bool

## [9.1.0]
Expand Down
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Flutter phone input integrated with flutter internationalization
- Phone formatting localized by region
- Phone number validation (built-in validators included for main use cases)
- Support auto fill and copy paste
- Form field
- Uses dart phone_numbers_parser for parsing
- Form field

## Demo

Expand All @@ -33,13 +33,15 @@ PhoneFormField(
countrySelectorNavigator: const CountrySelectorNavigator.page(),
onChanged: (phoneNumber) => print('changed into $phoneNumber'),
enabled: true,
countryButtonPadding: null,
isCountrySelectionEnabled: true,
isCountryButtonPersistent: true,
showDialCode: true,
showIsoCodeInInput: true,
showFlagInInput: true,
flagSize: 16
countryButtonStyle: const CountryButtonStyle(
showDialCode: true,
showIsoCode: true,
showFlag: true,
flagSize: 16
),
// + all parameters of TextField
// + all parameters of FormField
// ...
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: phone_form_field
description: Flutter phone input integrated with flutter internationalization
version: 9.2.0
version: 9.2.1
homepage: https://github.com/cedvdb/phone_form_field

environment:
Expand Down

0 comments on commit a1e06e0

Please sign in to comment.