showNoPlacesFoundSnackbar function
- 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,
),
);
}