mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-01-01 07:49:32 +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,
|
||
|
|
),
|
||
|
|
);
|
||
|
|
}
|