Created
June 23, 2021 04:58
-
-
Save adiraden/c223a37242c8fa9dd3d529fd08b35b3f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_webview_plugin/flutter_webview_plugin.dart'; | |
| import 'package:dart/main.dart'; | |
| void main() => runApp(My()); | |
| class My extends StatefulWidget{ | |
| @override | |
| MyState createState()=> MyState(); | |
| } | |
| class MyState extends State<My>{ | |
| @override | |
| Widget build(BuildContext context){ | |
| return MaterialApp( | |
| // appBar:AppBar(title:Text("adi") ), | |
| home : WebviewScaffold( | |
| url : 'https://utmmataram.ac.id/', | |
| hidden : true, | |
| appBar : AppBar(title:Text("UTM.Mataram.ac.id") | |
| ), | |
| ), | |
| );// | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment