Is there any possibility to load complete website (including associated files) from local assets ?
(是否有可能从本地资产加载完整的网站(包括相关文件)?)
I tried it with flutter plugin webview_flutter
and loaded index.html. (我尝试使用flutter插件webview_flutter
并加载了index.html。)
Future<String> loadLocal() async {
return await rootBundle.loadString('assets/mywebsite/index.html');
}
only html code is being rendered and associated javascripts are not working.
(仅呈现html代码,并且相关的javascript无法正常工作。)
ask by Shahzad Akram translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…