Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,9 @@
## [1.0.0] - 31.03.2021

* Null Safety migrated
* Bug fix.
* Bug fix.

## [1.0.1] - 01.04.2021

* Example edited.
* Readme edited.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Progress dialog package for flutter
You must add the library as a dependency to your project.
```yaml
dependencies:
sn_progress_dialog: ^1.0.0
sn_progress_dialog: ^1.0.1
```

You should then run `flutter packages get`
Expand Down Expand Up @@ -45,7 +45,7 @@ You don't need to update state, just pass the value.
You can also update the msg value(optional)

```dart
pd.update(prrogress value);
pd.update(progress value);
```

### Other Properties
Expand Down
8 changes: 4 additions & 4 deletions example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,22 +117,22 @@ class Home extends StatelessWidget {
),
),
),
RaisedButton(
MaterialButton(
child: Text('Normal Progress'),
onPressed: () {
_normalProgress(context);
}),
RaisedButton(
MaterialButton(
child: Text('Valuable Progress'),
onPressed: () {
_valuableProgress(context);
}),
RaisedButton(
MaterialButton(
child: Text('Preparing Progress'),
onPressed: () {
_preparingProgress(context);
}),
RaisedButton(
MaterialButton(
child: Text('Custom Progress'),
onPressed: () {
_customProgress(context);
Expand Down
8 changes: 4 additions & 4 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -114,22 +114,22 @@ class Home extends StatelessWidget {
),
),
),
RaisedButton(
MaterialButton(
child: Text('Normal Progress'),
onPressed: () {
_normalProgress(context);
}),
RaisedButton(
MaterialButton(
child: Text('Valuable Progress'),
onPressed: () {
_valuableProgress(context);
}),
RaisedButton(
MaterialButton(
child: Text('Preparing Progress'),
onPressed: () {
_preparingProgress(context);
}),
RaisedButton(
MaterialButton(
child: Text('Custom Progress'),
onPressed: () {
_customProgress(context);
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.0"
version: "1.0.1"
source_span:
dependency: transitive
description:
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: sn_progress_dialog
description: Customizable progress dialog package for Flutter.(Captures the progress value)
version: 1.0.0
version: 1.0.1
author: A.Emre ESEN <emreesen27@gmail.com>
homepage: https://github.com/emreesen27/Flutter-Progress-Dialog.git

Expand Down