The Webview Univeral Flutter package for Appeto SDK.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
450 B

  1. import 'package:flutter/material.dart';
  2. class Webview {
  3. setBrightness(Brightness brightness) {}
  4. launch(String url) {}
  5. }
  6. class WebviewWindow {
  7. static Future<bool> isWebviewAvailable() async {
  8. return false;
  9. }
  10. static Future<Webview> create({required configuration}) async {
  11. return Webview();
  12. }
  13. }
  14. class CreateConfiguration {
  15. final double titleBarTopPadding;
  16. CreateConfiguration({
  17. required this.titleBarTopPadding,
  18. });
  19. }