mirror of
https://github.com/inventree/inventree-app.git
synced 2025-04-28 05:26:47 +00:00
Default to checkCircle if icon not specified
This commit is contained in:
parent
e1a8ecc5f0
commit
1e4fbc3697
@ -19,7 +19,7 @@ void showSnackIcon(GlobalKey<ScaffoldState> key, String text, {IconData icon, bo
|
||||
|
||||
// If icon not specified, use the success status
|
||||
if (icon == null) {
|
||||
icon = (success == true) ? FontAwesomeIcons.checkCircle : FontAwesomeIcons.timesCircle;
|
||||
icon = (success == false) ? FontAwesomeIcons.timesCircle : FontAwesomeIcons.checkCircle;
|
||||
}
|
||||
|
||||
key.currentState.showSnackBar(
|
||||
|
Loading…
x
Reference in New Issue
Block a user