-
-
Notifications
You must be signed in to change notification settings - Fork 911
Closed
Description
Is there a reason that the Html
widget has a default padding? Is there a way to remove it?
Example app:
void main() => runApp(App());
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(),
body: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text('Example1'),
Html(data: 'Example2'),
],
)
),
);
}
}
You can see the difference in padding between the Text
and Html
.
Thanks!
Metadata
Metadata
Assignees
Labels
No labels