_getDescription(description) {
return new Container(
child:
//new Text(description),
new WebviewScaffold(
url: new Uri.dataFromString(description, mimeType: 'text/html',encoding: utf8).toString()),
width: double.infinity,
margin: new EdgeInsets.only(top: 10.0),
height: 80,
);
}
Hi, I'm trying to use a WebviewScaffold by
flutter_webview_pluginto replace the Text Widget in _getDescription, the problem is the webview is outside the container :my code:
please help me