2022-08-08 10:46:12 -05:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class ShareDialog extends StatelessWidget {
|
2024-01-27 11:14:32 -05:00
|
|
|
const ShareDialog({super.key});
|
2022-08-08 10:46:12 -05: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 11:14:32 -05:00
|
|
|
child: const Text('share_dialog_preparing').tr(),
|
2023-08-18 17:52:40 -05:00
|
|
|
),
|
2022-08-08 10:46:12 -05:00
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|