showNotificationTextToast function
Implementation
void showNotificationTextToast(String title,
{Duration? duration, Alignment? align}) {
showNotificationCustomToast(
Container(
margin: EdgeInsets.symmetric(horizontal: 16),
child: BaseCard(
child: Row(
children: [
Text(
title,
style: kNotificationToastTitleStyle,
),
],
),
padding: EdgeInsets.symmetric(horizontal: 16, vertical: 7),
borderRadius: kNotificationToastBorderRadius,
color: kNotificationToastBackgroundColor,
),
),
duration: duration,
align: align,
);
}