diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b1b0ad..0f2f18e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ -## 0.8.0 -- Fix an error on `enabled` Textfield in the `DecoratedPlatformTextfield` -- Update `flutter_platform_widgets` to `6.0.2` +## 1.0.0 +- Fixes compatibility with Flutter 3.16 by having a default value for the `enabled` property of Textfield in the `DecoratedPlatformTextfield` +- Update `flutter_platform_widgets` to `6.0.2`, this requires the usage of Flutter 3.16+ +- Many thanks to [Kiruel](https://github.com/Kiruel) for the above changes! ## 0.7.4 - Improved `DialogHandler` API - you can now specify the return type, e.g. `final result = await DialogHandler.showWidgetDialog(...)` diff --git a/README.md b/README.md index c3e7dee..f2ca69e 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ Based on these great packages: Licensed commercially friendly under the [MIT License](LICENSE). +## Flutter Versions +* Use 1.0 or higher for Flutter 3.16+ +* Use 0.7.4 for previous Flutter versions + ## Platform Widgets and Methods Platform widgets use their material or cupertino equivalent based on the chosen platform. diff --git a/pubspec.yaml b/pubspec.yaml index f3e6527..cd53dd8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,11 @@ name: enough_platform_widgets -description: Useful platform aware widgets to bring a Material app to Cupertino. -version: 0.8.0 +description: Useful platform aware widgets to develop a Flutter app with either Cupertino and Material design. +version: 1.0.0 homepage: https://github.com/Enough-Software/enough_platform_widgets +topics: + - cupertino + - material + - widgets environment: sdk: ">=2.17.0 <4.0.0" @@ -12,7 +16,7 @@ dependencies: cupertino_progress_bar: ^0.2.0 flutter: sdk: flutter - flutter_platform_widgets: ^6.0.2 + flutter_platform_widgets: ^6.0.0 dev_dependencies: flutter_test: