diff --git a/lib/ui/app/forms/learn_more.dart b/lib/ui/app/forms/learn_more.dart index 3a5246662..24a807e7c 100644 --- a/lib/ui/app/forms/learn_more.dart +++ b/lib/ui/app/forms/learn_more.dart @@ -29,14 +29,20 @@ class LearnMoreUrl extends StatelessWidget { return Row( children: [ 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)), + ), ), ], );