feedback dialog is now scrollable

This commit is contained in:
Lars Neuhaus 2024-04-10 12:10:57 +02:00
parent 51373fe7a2
commit dfd9459922

View File

@ -48,7 +48,8 @@ class _FeedbackDialogState extends State<FeedbackDialog> {
appBar: AppBar( appBar: AppBar(
title: const Text('Feedback'), title: const Text('Feedback'),
), ),
body: Column( body: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.max, mainAxisSize: MainAxisSize.max,
children: [ children: [
const SizedBox(height: 5), const SizedBox(height: 5),
@ -168,5 +169,6 @@ class _FeedbackDialogState extends State<FeedbackDialog> {
], ],
), ),
),
); );
} }