Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 4ad82c1

Browse files
committed
transition away from deprecated argument
child -> builder
1 parent 12cdd04 commit 4ad82c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/widgets/info_table_popup.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import 'package:flutter/material.dart';
33
void showInfoTablePopup(BuildContext context, Map<String, dynamic> table) {
44
showDialog(
55
context: context,
6-
child: SimpleDialog(
6+
builder: (c) => SimpleDialog(
77
contentPadding: const EdgeInsets.symmetric(
88
horizontal: 20,
99
vertical: 15,

0 commit comments

Comments
 (0)