showFeatureNotAvailable static method

Future<bool?> showFeatureNotAvailable(
  1. BuildContext context
)

Shows a "Feature not available" dialog

Implementation

static Future<bool?> showFeatureNotAvailable(BuildContext context) {
  const title = 'Feature Not Available';
  const message =
      'This feature is currently under development and will be available soon.';
  return SavePointsDialog.show(
    context,
    title: title,
    message: message,
    icon: Icons.construction_rounded,
    iconColor: Colors.orange,
    confirmText: 'OK',
  );
}