On German/mobile make more space for language in localization settings
This commit is contained in:
parent
13bce8de87
commit
a4bc404b4d
|
|
@ -29,15 +29,21 @@ class LearnMoreUrl extends StatelessWidget {
|
|||
return Row(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 2,
|
||||
child: child,
|
||||
),
|
||||
SizedBox(
|
||||
width: 10,
|
||||
),
|
||||
TextButton(
|
||||
child: Text(label ?? localization!.learnMore),
|
||||
Expanded(
|
||||
child: TextButton(
|
||||
child: Text(
|
||||
label ?? localization!.learnMore,
|
||||
maxLines: 4,
|
||||
),
|
||||
onPressed: () => launchUrl(Uri.parse(url)),
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue