mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-02-16 22:39:34 +00:00
11 lines
290 B
Dart
11 lines
290 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:vaani/generated/l10n.dart';
|
|
|
|
void showNotImplementedToast(BuildContext context) {
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
SnackBar(
|
|
content: Text(S.of(context).notImplemented),
|
|
showCloseIcon: true,
|
|
),
|
|
);
|
|
}
|