54 lines
1.6 KiB
Dart
54 lines
1.6 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:localsend_app/gen/strings.g.dart';
|
|
import 'package:localsend_app/util/native/platform_check.dart';
|
|
import 'package:localsend_app/widget/dialogs/custom_bottom_sheet.dart';
|
|
import 'package:routerino/routerino.dart';
|
|
|
|
class CannotOpenFileDialog extends StatelessWidget {
|
|
final String path;
|
|
|
|
const CannotOpenFileDialog({required this.path, super.key});
|
|
|
|
static Future<void> open(BuildContext context, String path, void Function()? onDeleteTap) async {
|
|
if (checkPlatformIsDesktop()) {
|
|
await showDialog(
|
|
context: context,
|
|
builder: (_) => AlertDialog(
|
|
title: Text(t.dialogs.cannotOpenFile.title),
|
|
content: Text(t.dialogs.cannotOpenFile.content(file: path)),
|
|
actions: [
|
|
if (onDeleteTap != null)
|
|
TextButton(
|
|
onPressed: () {
|
|
onDeleteTap();
|
|
context.pop();
|
|
},
|
|
child: Text(t.receiveHistoryPage.entryActions.deleteFromHistory),
|
|
),
|
|
TextButton(
|
|
onPressed: () => context.pop(),
|
|
child: Text(t.general.close),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
} else {
|
|
await context.pushBottomSheet(() => CannotOpenFileDialog(path: path));
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return CustomBottomSheet(
|
|
title: t.dialogs.cannotOpenFile.title,
|
|
description: t.dialogs.cannotOpenFile.content(file: path),
|
|
child: Center(
|
|
child: ElevatedButton(
|
|
onPressed: () => context.popUntilRoot(),
|
|
child: Text(t.general.close),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|