From db371245a8fcff5b22eb554616003bf491ffe1fb Mon Sep 17 00:00:00 2001 From: ahmad Date: Sat, 20 Feb 2021 19:58:39 +0100 Subject: [PATCH] update version --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- example/pubspec.yaml | 2 +- pubspec.yaml | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b461c2a..e23a3d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [2.2.3] - 20.02.2021 + +* Update flutter components +* clean-up + ## [2.2.2] - 26.10.2020 * Update dependencies (Cupertino, LineAwesome, FontAwesome) diff --git a/README.md b/README.md index 8bfb435..cb0e689 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # FlutterIconPicker -[![Version](https://img.shields.io/badge/pub-v2.2.2-blue)](https://pub.dev/packages/flutter_iconpicker) +[![Version](https://img.shields.io/badge/pub-v2.2.3-blue)](https://pub.dev/packages/flutter_iconpicker) [![Generic badge](https://img.shields.io/badge/platform-android%20|%20ios%20|%20web%20|%20desktop-blue.svg)](https://pub.dev/packages/flutter_iconpicker) This package provides an IconPicker with supported (or custom provided) Icons which can be picked through an AlertDialog. All Icons are mapped with its names in the IconData. This is necessary to make it possible to search through the icons. Fulltextsearch including a note if no results where found. @@ -41,7 +41,7 @@ To use this package, add `flutter_iconpicker` as a [dependency in your pubspec.y | searchHintText | `String` | `'Search'` | Sets the `hintText` in the `TextField` of [SearchBar] | | searchClearIcon | `Icon` | `Icon(Icons.close)` | Sets the suffix icon in the [SearchBar] | | noResultsText | `String` | `'No results for:'` | The text to show when no results where found for the search term. | -| showTooltips | `bool` | `false` | Shows the labels underneeth the proper icon.
**WARNING for Flutter Web**: Until SKIA is disabled (like Flutter Web isn't ready for SKIA yet), this option could slow down the performance! | +| showTooltips | `bool` | `false` | Shows the labels underneeth the proper icon. | | showSearchBar | `bool` | `true` | Shows the search bar above the icons if `true` | | iconPackMode | `IconPack` | `IconPack.material` | The mode which Icons to show. | | customIconPack | `Map` | `null` | The customized icons that can be used instead. | diff --git a/example/pubspec.yaml b/example/pubspec.yaml index aa7d6ba..c382216 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -19,7 +19,7 @@ environment: dependencies: flutter: sdk: flutter - flutter_iconpicker: ^2.2.2 + flutter_iconpicker: any line_icons: ^0.2.0 dev_dependencies: diff --git a/pubspec.yaml b/pubspec.yaml index 9fb5d5d..cfacd22 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: flutter_iconpicker description: A Dialog for picking Icons in Flutter and use them anywhere. Can be used as a default Dialog or as a Adaptive Dialog. -version: 2.2.2 +version: 2.2.3 homepage: https://github.com/Ahmadre repository: https://github.com/Ahmadre/FlutterIconPicker