mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-06 19:19:28 +00:00
11 lines
241 B
Dart
11 lines
241 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
|
||
|
|
void showNotImplementedToast(BuildContext context) {
|
||
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
||
|
|
const SnackBar(
|
||
|
|
content: Text("Not implemented"),
|
||
|
|
showCloseIcon: true,
|
||
|
|
),
|
||
|
|
);
|
||
|
|
}
|