-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8dcf6b7
commit 819f798
Showing
15 changed files
with
183 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,33 @@ | ||
## [0.0.1] - 16.01.2021 | ||
## [1.0.4] - 28.03.2022 | ||
* Completed type added. | ||
|
||
* Initial build for flutter sn_progress_dialog package. | ||
## [1.0.3] - 15.08.2021 | ||
* Bug fix | ||
|
||
## [0.0.2] - 16.01.2021 | ||
## [1.0.2] - 04.05.2021 | ||
* The back button was prevented from closing the dialog. | ||
* Border radius added. | ||
|
||
* Readme and description edited. | ||
## [1.0.1] - 01.04.2021 | ||
* Example edited. | ||
* Readme edited. | ||
|
||
## [0.0.3] - 21.01.2021 | ||
## [1.0.0] - 31.03.2021 | ||
* Null Safety migrated. | ||
* Bug fix. | ||
|
||
* Msg added to update method | ||
## [0.0.5] - 14.02.2021 | ||
* New properties added. | ||
|
||
## [0.0.4] - 29.01.2021 | ||
|
||
* Progress Type added. | ||
* Documentation and example codes edited. | ||
|
||
## [0.0.5] - 14.02.2021 | ||
|
||
* New properties added | ||
|
||
## [1.0.0] - 31.03.2021 | ||
|
||
* Null Safety migrated | ||
* Bug fix. | ||
|
||
## [1.0.1] - 01.04.2021 | ||
|
||
* Example edited. | ||
* Readme edited. | ||
|
||
## [1.0.2] - 04.05.2021 | ||
|
||
* The back button was prevented from closing the dialog. | ||
* Border radius added. | ||
## [0.0.3] - 21.01.2021 | ||
* Msg added to update method. | ||
|
||
## [1.0.3] - 15.08.2021 | ||
## [0.0.2] - 16.01.2021 | ||
* Readme and description edited. | ||
|
||
* Bug fix | ||
## [0.0.1] - 16.01.2021 | ||
* Initial build for flutter sn_progress_dialog package. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
buildscript { | ||
ext.kotlin_version = '1.3.50' | ||
ext.kotlin_version = '1.5.20' | ||
repositories { | ||
google() | ||
jcenter() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class Completed { | ||
/// [completedMsg] Assign the completed Message | ||
// (Default: "completed") | ||
final String completedMsg; | ||
|
||
/// [closedDelay] The time the dialog window will wait to close | ||
// (Default: 1500 ms) | ||
final int closedDelay; | ||
|
||
/// [completedImage] The default does not contain any value, if the value is assigned another asset image is created. | ||
final AssetImage? completedImage; | ||
|
||
Completed({ | ||
this.completedMsg = "Completed !", | ||
this.closedDelay = 1500, | ||
this.completedImage, | ||
}); | ||
} |
Oops, something went wrong.