showUnimplementedMessage method Null safety
- BuildContext context
Shows snack bar informing that a feature in not implemented yet.
Implementation
static void showUnimplementedMessage(BuildContext context) {
final snackBar = SnackBar(
backgroundColor: AppColors.secondaryAccent(context),
content: Text(
S.of(context).featureNotImplemented,
style: AppTextStyles.body2(
context,
color: LightThemeColor.background,
),
),
);
ScaffoldMessenger.of(context).showSnackBar(snackBar);
}