mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-04-20 22:13:48 +00:00
Replace Column with SingleChildScrollView in RepeaterLoginDialog for better layout handling
This commit is contained in:
parent
df7fb45683
commit
a14462978d
1 changed files with 6 additions and 4 deletions
|
|
@ -261,10 +261,11 @@ class _RepeaterLoginDialogState extends State<RepeaterLoginDialog> {
|
|||
child: CircularProgressIndicator(),
|
||||
),
|
||||
)
|
||||
: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
: SingleChildScrollView(
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
l10n.login_repeaterDescription,
|
||||
style: const TextStyle(fontSize: 14),
|
||||
|
|
@ -382,6 +383,7 @@ class _RepeaterLoginDialogState extends State<RepeaterLoginDialog> {
|
|||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.pop(context),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue