Make keys scrollable

This commit is contained in:
lemoer 2025-07-05 21:29:41 +02:00
parent fbaab3744e
commit 7744aa391e

View File

@ -336,7 +336,7 @@ class _MyHomePageState extends State<MyHomePage> {
final dialog = AlertDialog(
title: title,
content: Column(children: children),
content: SingleChildScrollView(child: Column(children: children)),
actions: actions,
);