Added webview

This commit is contained in:
Juan Gilsanz Polo
2024-02-22 19:09:35 +01:00
parent 1521fd0f7e
commit 7c20697661
10 changed files with 143 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
import 'package:webview_flutter/webview_flutter.dart';
class WebViewModel {
final WebViewController webViewController;
WebViewModel({
required this.webViewController,
});
}