From 7744aa391ef5f5cced04619d276c7159065e50c2 Mon Sep 17 00:00:00 2001 From: lemoer Date: Sat, 5 Jul 2025 21:29:41 +0200 Subject: [PATCH] Make keys scrollable --- app/lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/main.dart b/app/lib/main.dart index 4dfeb75..aa8e4c2 100644 --- a/app/lib/main.dart +++ b/app/lib/main.dart @@ -336,7 +336,7 @@ class _MyHomePageState extends State { final dialog = AlertDialog( title: title, - content: Column(children: children), + content: SingleChildScrollView(child: Column(children: children)), actions: actions, );