31 lines
699 B
Dart
31 lines
699 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:photos/utils/email_util.dart';
|
|
|
|
PopupMenuButton<dynamic> reportBugPopupMenu(BuildContext context) {
|
|
return PopupMenuButton(
|
|
itemBuilder: (context) {
|
|
final List<PopupMenuItem> items = [];
|
|
items.add(
|
|
PopupMenuItem(
|
|
value: 1,
|
|
child: Row(
|
|
children: const [
|
|
Text("Contact support"),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
return items;
|
|
},
|
|
onSelected: (value) async {
|
|
if (value == 1) {
|
|
await sendLogs(
|
|
context,
|
|
"Contact support",
|
|
"support@ente.io",
|
|
postShare: () {},
|
|
);
|
|
}
|
|
},
|
|
);
|
|
}
|