2022-08-08 17:46:12 +02:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class ShareDialog extends StatelessWidget {
|
2024-01-27 18:14:32 +02:00
|
|
|
const ShareDialog({super.key});
|
2022-08-08 17:46:12 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return AlertDialog(
|
|
|
|
content: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
|
|
|
const CircularProgressIndicator(),
|
|
|
|
Container(
|
|
|
|
margin: const EdgeInsets.only(top: 12),
|
2024-01-27 18:14:32 +02:00
|
|
|
child: const Text('share_dialog_preparing').tr(),
|
2023-08-19 00:52:40 +02:00
|
|
|
),
|
2022-08-08 17:46:12 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|