Restructure unhandled buttons

This commit is contained in:
2023-06-01 18:47:27 +02:00
parent 6709e3db47
commit 8d208a3389
3 changed files with 14 additions and 2 deletions

View File

@ -0,0 +1,8 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class UnimplementedDialog {
static void show(BuildContext context) {
showDialog(context: context, builder: (context) => const AlertDialog(content: Text("Not implemented yet")));
}
}