iosWebViewFix/example/integration_test/headless_in_app_webview/main.dart

25 lines
600 B
Dart
Raw Normal View History

import 'dart:async';
import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
2022-04-28 21:23:38 +00:00
import 'package:flutter_test/flutter_test.dart';
import '../constants.dart';
import '../util.dart';
2022-04-28 21:23:38 +00:00
part 'convert_to_inappwebview.dart';
part 'take_screenshot.dart';
part 'custom_size.dart';
part 'run_and_dispose.dart';
part 'set_get_settings.dart';
2022-04-28 21:23:38 +00:00
void main() {
skippableGroup('HeadlessInAppWebView', () {
2022-04-28 21:23:38 +00:00
runAndDispose();
takeScreenshot();
customSize();
setGetSettings();
2022-10-22 02:06:11 +00:00
convertToInAppWebView();
2022-04-28 21:23:38 +00:00
});
}