You can display HTML and CSS using a WebView...in a separate activity from your Flutter UI. There is *no* way currently to actually have a WebView widget inside your Flutter views.
What exactly are you trying to accomplish?
--
You received this message because you are subscribed to the Google Groups "Flutter Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Try just using the table widget:
Table(
border: TableBorder.all(width: 11.0),
children: [
TableRow(
children: [
const Text('Firstname'),
const Text('Lastname'),
]
),
TableRow(
children: [
const Text('Peter'),
const Text('Griffin'),
]
)
]
)
Oof... Yeah, you'll probably have to use a webview then.
Out of curiosity, could you share some more details about the server? E.g. can it return pretty much any HTML/CSS, or only certain elements? Is there an option on the API to return some sort of unrendered content?