showNoPlacesFoundSnackbar function

void showNoPlacesFoundSnackbar(
  1. BuildContext context
)

Shows no places found snackbar.

Implementation

void showNoPlacesFoundSnackbar(BuildContext context) {
  ScaffoldMessenger.of(context).showSnackBar(
    const SnackBar(
      content: Text('No places found in the file'),
      backgroundColor: Colors.orange,
    ),
  );
}