showPlaceNotFoundSnackbar function

void showPlaceNotFoundSnackbar(
  1. BuildContext context
)

Shows a snackbar indicating place not found.

Implementation

void showPlaceNotFoundSnackbar(BuildContext context) {
  ScaffoldMessenger.of(context).showSnackBar(
    const SnackBar(
      content: Text('Place not found'),
      backgroundColor: Colors.orange,
    ),
  );
}