On German/mobile make more space for language in localization settings

This commit is contained in:
Hillel Coren 2023-12-18 16:23:25 +02:00
parent 13bce8de87
commit a4bc404b4d
1 changed files with 9 additions and 3 deletions

View File

@ -29,15 +29,21 @@ class LearnMoreUrl extends StatelessWidget {
return Row( return Row(
children: <Widget>[ children: <Widget>[
Expanded( Expanded(
flex: 2,
child: child, child: child,
), ),
SizedBox( SizedBox(
width: 10, width: 10,
), ),
TextButton( Expanded(
child: Text(label ?? localization!.learnMore), child: TextButton(
child: Text(
label ?? localization!.learnMore,
maxLines: 4,
),
onPressed: () => launchUrl(Uri.parse(url)), onPressed: () => launchUrl(Uri.parse(url)),
), ),
),
], ],
); );
} }