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