Explorar el Código

1、外链跳转webView

tags/0.0.15+7
PH2 hace 3 años
padre
commit
5b20d3b182
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      lib/pages/home_page/home_page.dart

+ 5
- 0
lib/pages/home_page/home_page.dart Ver fichero

@@ -256,6 +256,11 @@ class _HomePageState extends State<HomePage> with WidgetsBindingObserver, Ticker
if (_currentIndex == index) { if (_currentIndex == index) {
return; return;
} else { } else {
/// 如果是外链,直接打开原生WebView
if (model?.skipIdentifier == 'pub.flutter.url') {
RouterUtil.openWebview(model?.url, context);
return;
}
setState(() { setState(() {
_currentIndex = index; _currentIndex = index;
}); });


Cargando…
Cancelar
Guardar