MIHScackBar not automatically dismissing with new flutter versiona #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
SnackBar MihSnackBar({Color? backgroundColor, required Widget child}) {
return SnackBar(
backgroundColor: backgroundColor,
content: child,
shape: StadiumBorder(),
behavior: SnackBarBehavior.floating,
duration: Duration(seconds: 2),
persist: false, // 👈 ADD THIS LINE TO FORCE AUTO-DISMISS
width: null,
action: SnackBarAction(label: "Dismiss", onPressed: () {}),
);
}
released in v.0.1.0