showComingSoon static method

void showComingSoon(
  1. BuildContext context
)

Shows a "Coming soon" snackbar

Implementation

static void showComingSoon(BuildContext context) {
  SavePointsSnackbar.show(
    context,
    title: 'Coming Soon',
    subtitle: 'This feature is under development',
    type: SnackbarType.info,
  );
}