lemmur-app-android/lib/widgets/info_table_popup.dart

22 lines
530 B
Dart
Raw Normal View History

2020-10-26 18:47:34 +01:00
import 'package:flutter/material.dart';
void showInfoTablePopup(BuildContext context, Map<String, dynamic> table) {
showDialog(
context: context,
builder: (c) => SimpleDialog(
2020-10-26 18:47:34 +01:00
contentPadding: const EdgeInsets.symmetric(
horizontal: 20,
vertical: 15,
),
children: [
Table(
children: table.entries
.map((e) => TableRow(
children: [Text('${e.key}:'), Text(e.value.toString())]))
2020-10-26 18:47:34 +01:00
.toList(),
),
],
),
);
}