The good news is that as you begin your journey as a software developer, you'll start to discover which programming language will be most suitable for you,
Thursday, September 3, 2020
C++
Labels:
C++
Hello Everyone Iam a Java nd Flutter programmer, also Iam graphic designer follow my sites for latest news of programming
Labels:
Java
Hello Everyone Iam a Java nd Flutter programmer, also Iam graphic designer follow my sites for latest news of programming
Lorem Ipsum
Labels:
Data Structure
Hello Everyone Iam a Java nd Flutter programmer, also Iam graphic designer follow my sites for latest news of programming
Tuesday, September 1, 2020
Build Web pages view in flutter in just few minutes
Steps to do:
Step 1:
First of all get the Flutter_Web_View_Plugin from pub.dev and paste it in the pubspec.yaml
import 'package:flutter/material.dart';
import 'package:flutter_webview_plugin/flutter_webview_plugin.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Home(),
);
}
}
class Home extends StatefulWidget {
@override
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
@override
Widget build(BuildContext context) {
return WebviewScaffold(
withZoom: true,
url: 'https://www.google.com/',
appBar: AppBar(
title: Text("My Site"),
backgroundColor: Colors.deepOrange,
),
);
}
}
This is the output you can use any site you want just change the url in the code
Labels:
Flutter
Hello Everyone Iam a Java nd Flutter programmer, also Iam graphic designer follow my sites for latest news of programming
Subscribe to:
Posts (Atom)
-
First thing first you have to follow following steps Step:1: First you have to make a simple app making a single button like fig: 1 Fig 1 ...
-
Steps to do: Step 1: First of all get the Flutter_Web_View_Plugin from pub.dev and paste it in the pubspec.yaml After that click on package...