diff --git a/CHANGELOG.md b/CHANGELOG.md index 374974b..3509a4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [1.0.2] - January 21, 2020 + +* Update some formatting +* Update description in pubspec.yaml + ## [1.0.1] - January 21, 2020 * Fix broken table in README diff --git a/README.md b/README.md index d582ec2..78783b1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # flutter_dialogs -Platform aware dialog and alert widgets. +A lightweight and platform-aware plugin for showing dialogs and alerts for both Android and iOS devices. ## Features diff --git a/lib/src/basic_dialog_action.dart b/lib/src/basic_dialog_action.dart index 7b39f4b..033071a 100644 --- a/lib/src/basic_dialog_action.dart +++ b/lib/src/basic_dialog_action.dart @@ -23,8 +23,8 @@ class BasicDialogAction extends BaseDialog { this.title, }); - VoidCallback onPressed; - Widget title; + final VoidCallback onPressed; + final Widget title; @override FlatButton buildAndroidWidget(BuildContext context) { diff --git a/pubspec.yaml b/pubspec.yaml index 0761f61..71c3129 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_dialogs -description: Platform aware dialog and alert widgets. -version: 1.0.1 +description: A lightweight and platform-aware plugin for showing dialogs and alerts for both Android and iOS devices. +version: 1.0.2 author: Joshua de Guzman homepage: https://github.com/joshuadeguzman/flutter-dialogs