Arkadiy Radaev 5daf361527 lab 5 again
2024-12-11 13:10:34 +04:00

12 lines
275 B
Dart

import 'package:flutter/material.dart';
import 'package:mylab/presentation/dialogs/error_dialog.dart';
void showErrorDialog(
BuildContext context, {
required String? error,
}) {
showDialog(
context: context,
builder: (_) => ErrorDialog(error),
);
}