You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm assessing Flutter and some plugins for the needs of a yet to be created app. I will try it out today or tomorrow depending on where I get to and feedback :-)
Yup, it works fine, just use the new Uri.dataFromBytes
final flutterWebviewPlugin = new FlutterWebviewPlugin();
flutterWebviewPlugin.launch(
new Uri.dataFromBytes(myBytes, mimeType: 'text/html').toString(),
rect: new Rect.fromLTWH(
0.0, 0.0, MediaQuery.of(context).size.width, 300.0),
userAgent: kAndroidUserAgent);
Serve html from the user's assets folder for instance?
Possibly related to this #23.
The text was updated successfully, but these errors were encountered: