iosWebViewFix/example/lib/main.dart

170 lines
4.9 KiB
Dart
Raw Normal View History

import 'dart:async';
2020-06-02 23:48:27 +00:00
2022-04-21 21:14:51 +00:00
import 'package:flutter/foundation.dart';
2018-11-13 11:02:20 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
2020-06-02 23:48:27 +00:00
import 'package:flutter_inappwebview_example/chrome_safari_browser_example.screen.dart';
import 'package:flutter_inappwebview_example/headless_in_app_webview.screen.dart';
import 'package:flutter_inappwebview_example/in_app_webiew_example.screen.dart';
import 'package:flutter_inappwebview_example/in_app_browser_example.screen.dart';
2022-05-08 23:51:21 +00:00
import 'package:flutter_inappwebview_example/web_authentication_session_example.screen.dart';
2022-10-11 08:10:13 +00:00
import 'package:pointer_interceptor/pointer_interceptor.dart';
// import 'package:path_provider/path_provider.dart';
// import 'package:permission_handler/permission_handler.dart';
2020-06-02 23:48:27 +00:00
InAppLocalhostServer localhostServer = new InAppLocalhostServer(documentRoot: 'assets');
2019-03-12 01:14:30 +00:00
2018-11-13 11:02:20 +00:00
Future main() async {
WidgetsFlutterBinding.ensureInitialized();
// await Permission.camera.request();
// await Permission.microphone.request();
// await Permission.storage.request();
2022-10-14 07:36:00 +00:00
if (!kIsWeb && defaultTargetPlatform == TargetPlatform.android) {
2022-04-20 17:20:31 +00:00
await InAppWebViewController.setWebContentsDebuggingEnabled(true);
}
if (!kIsWeb) {
await localhostServer.start();
}
2022-05-08 23:51:21 +00:00
2020-05-23 17:33:54 +00:00
runApp(MyApp());
2018-11-13 11:02:20 +00:00
}
2022-10-11 08:10:13 +00:00
PointerInterceptor myDrawer({required BuildContext context}) {
2022-10-17 00:23:05 +00:00
var children = [
2022-10-14 07:36:00 +00:00
ListTile(
title: Text('InAppWebView'),
onTap: () {
Navigator.pushReplacementNamed(context, '/');
},
2022-10-17 00:23:05 +00:00
),
ListTile(
title: Text('InAppBrowser'),
onTap: () {
Navigator.pushReplacementNamed(context, '/InAppBrowser');
},
),
ListTile(
title: Text('ChromeSafariBrowser'),
onTap: () {
Navigator.pushReplacementNamed(context, '/ChromeSafariBrowser');
},
),
ListTile(
title: Text('WebAuthenticationSession'),
onTap: () {
Navigator.pushReplacementNamed(context, '/WebAuthenticationSession');
},
),
ListTile(
title: Text('HeadlessInAppWebView'),
onTap: () {
Navigator.pushReplacementNamed(context, '/HeadlessInAppWebView');
},
),
2022-10-14 07:36:00 +00:00
];
2022-10-17 00:23:05 +00:00
if (kIsWeb) {
children = [
2022-10-14 07:36:00 +00:00
ListTile(
2022-10-17 00:23:05 +00:00
title: Text('InAppWebView'),
2022-10-14 07:36:00 +00:00
onTap: () {
2022-10-17 00:23:05 +00:00
Navigator.pushReplacementNamed(context, '/');
2022-10-14 07:36:00 +00:00
},
2022-10-17 00:23:05 +00:00
)
];
} else if (defaultTargetPlatform == TargetPlatform.macOS) {
children = [
// ListTile(
// title: Text('InAppWebView'),
// onTap: () {
// Navigator.pushReplacementNamed(context, '/');
// },
// ),
// ListTile(
// title: Text('InAppBrowser'),
// onTap: () {
// Navigator.pushReplacementNamed(context, '/InAppBrowser');
// },
// ),
2022-10-14 07:36:00 +00:00
ListTile(
2022-10-17 00:23:05 +00:00
title: Text('InAppBrowser'),
2022-10-14 07:36:00 +00:00
onTap: () {
2022-10-17 00:23:05 +00:00
Navigator.pushReplacementNamed(context, '/');
2022-10-14 07:36:00 +00:00
},
),
ListTile(
title: Text('WebAuthenticationSession'),
onTap: () {
Navigator.pushReplacementNamed(context, '/WebAuthenticationSession');
},
),
ListTile(
title: Text('HeadlessInAppWebView'),
onTap: () {
Navigator.pushReplacementNamed(context, '/HeadlessInAppWebView');
},
),
2022-10-17 00:23:05 +00:00
];
2022-10-14 07:36:00 +00:00
}
2022-10-11 08:10:13 +00:00
return PointerInterceptor(
child: Drawer(
child: ListView(
padding: EdgeInsets.zero,
children: <Widget>[
DrawerHeader(
child: Text('flutter_inappwebview example'),
decoration: BoxDecoration(
color: Colors.blue,
),
2020-06-02 23:48:27 +00:00
),
2022-10-14 07:36:00 +00:00
...children
2022-10-11 08:10:13 +00:00
],
),
2020-06-02 23:48:27 +00:00
),
);
}
2018-11-13 11:02:20 +00:00
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
void dispose() {
super.dispose();
}
@override
Widget build(BuildContext context) {
2022-10-14 07:36:00 +00:00
if (kIsWeb) {
return MaterialApp(initialRoute: '/', routes: {
'/': (context) => InAppWebViewExampleScreen(),
});
}
2022-10-17 00:23:05 +00:00
if (defaultTargetPlatform == TargetPlatform.macOS) {
return MaterialApp(initialRoute: '/', routes: {
// '/': (context) => InAppWebViewExampleScreen(),
// '/InAppBrowser': (context) => InAppBrowserExampleScreen(),
'/': (context) => InAppBrowserExampleScreen(),
'/HeadlessInAppWebView': (context) => HeadlessInAppWebViewExampleScreen(),
'/WebAuthenticationSession': (context) => WebAuthenticationSessionExampleScreen(),
});
}
2021-03-01 19:26:57 +00:00
return MaterialApp(initialRoute: '/', routes: {
'/': (context) => InAppWebViewExampleScreen(),
'/InAppBrowser': (context) => InAppBrowserExampleScreen(),
'/ChromeSafariBrowser': (context) => ChromeSafariBrowserExampleScreen(),
'/HeadlessInAppWebView': (context) => HeadlessInAppWebViewExampleScreen(),
2022-05-08 23:51:21 +00:00
'/WebAuthenticationSession': (context) => WebAuthenticationSessionExampleScreen(),
2021-03-01 19:26:57 +00:00
});
2018-11-13 11:02:20 +00:00
}
2021-03-01 19:26:57 +00:00
}