show static method
Displays a FloatingSnackBar in a Overlay with the provided title
.
Implementation
static void show(
String title, {
double bottom = 16,
Duration duration = const Duration(seconds: 2),
void Function()? onPressed,
Offset? at,
}) {
final style = Theme.of(router.context!).style;
OverlayEntry? entry;
entry = OverlayEntry(
builder:
(_) => FloatingSnackBar(
duration: duration,
onPressed: onPressed,
onEnd: () {
if (entry?.mounted == true) {
entry?.remove();
}
entry = null;
},
bottom: bottom,
at: at,
child: Text(
title,
style:
onPressed == null
? style.fonts.normal.regular.onBackground
: style.fonts.medium.regular.primary,
),
),
);
router.overlay?.insert(entry!);
}