@@ -25,11 +25,13 @@ class FlutterListViewElement extends WidgetElement { @override Widget build(BuildContext context, List<Widget> children) { return ListView( children: children, padding: const EdgeInsets.all(0), controller: controller, physics: const AlwaysScrollableScrollPhysics(), ); return...
I would like to have multiple WebViews (from the webview_flutter plugin) in my flutter app on the same page. I want to have each page be loaded so that the height of the container is the same as the height of the web page. Here's what I have so far: ListView( children: <Widge...