Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct colors elements #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions lib/sweetalert.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ class SweetAlertOptions {
/// If set to true, two buttons will be displayed.
final bool showCancelButton;

/// if null, default value is `Colors.blueAccent`
final Color loadingCircleColor;


final SweetAlertStyle style;

Expand All @@ -49,6 +52,7 @@ class SweetAlertOptions {
this.cancelButtonText,
this.confirmButtonColor,
this.confirmButtonText,
this.loadingCircleColor,
this.style});
}

Expand Down Expand Up @@ -147,7 +151,9 @@ class SweetAlertDialogState extends State<SweetAlertDialog>
width: 64.0,
height: 64.0,
child: new Center(
child: new CircularProgressIndicator(),
child: new CircularProgressIndicator(
backgroundColor: _options.loadingCircleColor ?? Colors.blueAccent,
),
),
));
break;
Expand Down Expand Up @@ -191,7 +197,7 @@ class SweetAlertDialogState extends State<SweetAlertDialog>
),
new RaisedButton(
onPressed: confirm,
color: _options.confirmButtonColor ?? SweetAlert.danger,
color: _options.cancelButtonColor?? SweetAlert.danger,
child: new Text(
_options.confirmButtonText ?? SweetAlert.confirmText,
style: new TextStyle(color: Colors.white, fontSize: 16.0),
Expand Down Expand Up @@ -268,6 +274,7 @@ abstract class SweetAlert {
Color confirmButtonColor,
String cancelButtonText,
String confirmButtonText,
Color loadingCircleColor,
SweetAlertStyle style}) {
SweetAlertOptions options = new SweetAlertOptions(
showCancelButton: showCancelButton,
Expand All @@ -278,7 +285,8 @@ abstract class SweetAlert {
confirmButtonColor: confirmButtonColor,
confirmButtonText: confirmButtonText,
cancelButtonText: cancelButtonText,
cancelButtonColor: confirmButtonColor);
cancelButtonColor: confirmButtonColor,
loadingCircleColor: loadingCircleColor);
if(_state!=null){
_state.update(options);
}else{
Expand Down