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(
|
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)),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue