diff --git a/CHANGELOG.md b/CHANGELOG.md index f7cbf35..ccf7dcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.7.0 +- Thanks again to [Dmytro Korotchenko](https://github.com/chitkiu) the `PlatformDropdownButton` is now more flexible. +- Re-added `PlatformListTile`, this time based on the Flutter's official `CupertinoListTile` widget. + ## 0.6.0 - Thanks again to [Brendan](https://github.com/definitelyme) enough_platform_widgets is now compatible with Flutter 3.7. diff --git a/README.md b/README.md index 3fe569b..8698769 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ Platform widgets use their material or cupertino equivalent based on the chosen * `PlatformFilledButtonIcon` uses an `ElevatedButton.filled` on material and a `CupertinoButton.filled` on cupertino * `DensePlatformIconButton` replaces the material `IconButton` * `PlatformInkWell` is a rectangular area of a that responds to touch and is based either on `InkWell` or on `CupertinoInkWell` +* `PlatformListTile` provides a ListTile implementation for both material and cupertino * `PlatformPageScaffold` provides a `PlatformScaffold` with the additional option to define a bottom bar. * `PlatformPopupButton` uses an action sheet on cupertino and a popup button on material. * `PlatformProgressIndicator` uses a `CircularProgressIndicator` on material and a `CupertinoActivityIndicator` on cupertino @@ -56,7 +57,7 @@ Currently the following cupertino widgets are provided: Add this as a dependency to your `pubspec.yaml`: ``` dependencies: - enough_platform_widgets: ^0.5.0 + enough_platform_widgets: ^0.7.0 ``` The latest version or `enough_platform_widgets` is [![enough_platform_widgets version](https://img.shields.io/pub/v/enough_platform_widgets.svg)](https://pub.dartlang.org/packages/enough_platform_widgets). diff --git a/pubspec.yaml b/pubspec.yaml index fc7f902..5a50bfa 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: enough_platform_widgets description: Useful platform aware widgets to bring a Material app to Cupertino. -version: 0.6.0 +version: 0.7.0 homepage: https://github.com/Enough-Software/enough_platform_widgets environment: diff --git a/test/enough_platform_widgets_test.dart b/test/enough_platform_widgets_test.dart deleted file mode 100644 index 8736309..0000000 --- a/test/enough_platform_widgets_test.dart +++ /dev/null @@ -1,12 +0,0 @@ -import 'package:flutter_test/flutter_test.dart'; - -import 'package:enough_platform_widgets/enough_platform_widgets.dart'; - -void main() { - test('adds one to input values', () { - // final calculator = Calculator(); - // expect(calculator.addOne(2), 3); - // expect(calculator.addOne(-7), -6); - // expect(calculator.addOne(0), 1); - }); -}