Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 
pilo 77def66498 first commit 2 tygodni temu
example first commit 2 tygodni temu
lib first commit 2 tygodni temu
linux first commit 2 tygodni temu
macos first commit 2 tygodni temu
test first commit 2 tygodni temu
windows first commit 2 tygodni temu
CHANGELOG.md first commit 2 tygodni temu
LICENSE first commit 2 tygodni temu
README.md first commit 2 tygodni temu
analysis_options.yaml first commit 2 tygodni temu
pubspec.yaml first commit 2 tygodni temu

README.md

Webview Universal

Webview universal yang mudah di gunakan

Tested On

OS Tested
Android Tested
Linux Tested
Windows Tested
ios Not Tested
Web Tested
macOS Not Tested
import 'package:flutter/material.dart';
import "package:webview_universal/webview_universal.dart";

void main(List<String> args) {
  runApp(const MaterialApp(
    home: MyApp(),
  ));
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  WebViewController webViewController = WebViewController();

  @override
  void initState() {
    super.initState();
    task();
  }

  Future<void> task() async {
    await webViewController.init(
      context: context,
      uri: Uri.parse("https://flutter.dev"),
    );
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: WebView(
        controller: webViewController,
      ),
    );
  }
}