This commit is contained in:
Imran Remtulla
2022-12-24 23:17:03 -05:00
parent a173be11eb
commit b40be7569b
3 changed files with 9 additions and 4 deletions

View File

@@ -338,7 +338,9 @@ class _ImportExportPageState extends State<ImportExportPage> {
? null
: () {
() async {
var values = await showDialog(
var values = await showDialog<
Map<String,
dynamic>?>(
context: context,
builder:
(BuildContext ctx) {
@@ -365,7 +367,10 @@ class _ImportExportPageState extends State<ImportExportPage> {
var urlsWithDescriptions =
await source
.getUrlsWithDescriptions(
values);
values.values
.map((e) =>
e.toString())
.toList());
var selectedUrls =
await showDialog<
List<String>?>(