I would like to get web pages to display responsively in my Flutter apps, and am unable to do so. They display as if the screen/viewport was much wider. For example, a page that looks like this in Android Chrome:
ends up looking like this in my app (regardless of the package I use):
I have experimented with both the webview_flutter and flutter_webview_plugin packages, including experimenting with several flutter_webview_plugin functions, turning them on and off:
Future<Null> launch(String url, {
bool withJavascript: true,
bool enableAppScheme: true,
bool withZoom: false,
bool scrollBar: true,
bool displayZoomControls: false,
bool useWideViewPort: false,
});
I'm starting to think the solution isn't in Flutter or its packages, but maybe something like manipulating the Android manifest file (hence the android and android-webview tags)?

