-
-
Notifications
You must be signed in to change notification settings - Fork 924
Closed
Labels
Description
I have a load of white space at the end of my html widget. Does anyone know how I remove it.
return Html(
data: description,
onLinkTap: (url, attributes, element) async {
final uri = Uri.parse(url ?? '');
if (await canLaunchUrl(uri)) {
launchUrl(uri);
}
},
shrinkWrap: true,
style: {
'p': Style(
margin: Margins.only(bottom: 8),
padding: HtmlPaddings.zero,
),
'br': Style(margin: Margins.only(bottom: 8)),
},
);