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