I am trying to implement webview of a certain url in my flutter app. Having used the plugin by flutter dev and flutter community, the url seems to load slow. I enabled cache and set clear cache to false yet, it still loads slowly. See my implementation using the flutter community plugin. Is there anything i am missing or doing wrong?
import 'package:flutter/material.dart';
import 'package:flutter_webview_plugin/flutter_webview_plugin.dart';
import 'package:gdgikorodu/utils//dev_scaffold.dart';
class RegisterPage extends StatelessWidget {
static const String routeName = "/register";
@override
Widget build(BuildContext context) {
return DevScaffold(
body: WebviewScaffold(
url: 'https://www.someurl.com',
hidden: true,
clearCache: false,
appCacheEnabled: true,
),
title: "Join Us",
);
}
}