Elegant-Notification
Elegant-Notification copied to clipboard
Notification not showing when using rootNavigatorKey.currentContext!
ElegantNotification.success(
width: 300,
height: 80,
position: Alignment.bottomRight,
stackedOptions: StackedOptions(
key: 'above',
type: StackedType.above,
),
description: Text(
maxLines: 2,
style: const TextStyle(
color: Colors.black,
),
'description',
),
title: Text(
style: const TextStyle(
fontWeight: FontWeight.bold,
color: Colors.black,
overflow: TextOverflow.ellipsis,
),
'title',
),
).show(rootNavigatorKey.currentContext!);