Vaani/lib/shared/widgets/not_implemented.dart

11 lines
241 B
Dart
Raw Permalink Normal View History

2024-08-20 10:14:07 -04:00
import 'package:flutter/material.dart';
void showNotImplementedToast(BuildContext context) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text("Not implemented"),
showCloseIcon: true,
),
);
}