Site icon Techpadi

FLUTTER WEBVIEW TUTORIAL #4 โ€“ Convert a website to an app using flutter.

Hi ๐Ÿ‘‹, everyone and welcome to part four of the flutter webview tutorial series.

Today, weโ€™re going to learn the fourth example on how to convert a website into an app in a few minutes using Flutter. If you want to know more about some cogent flutter Tricks and Tips and How to achieve tasks easily in Flutter, consider following me so you donโ€™t miss any updates and subscribing to my YouTube Channel. Thanks

Check the video out for more explanation and part three article ๐Ÿ‘‡

PART FOUR YouTube Tutorial

PART THREE ARTICLE

Let get started

Weโ€™re still using the flutter_inappwebview package, so just create another dart file for example 4, you can name it WebExampleFour.

The example is pretty straightforward, we just need some methods and parameters just like the code below

import 'package:flutter_inappwebview/flutter_inappwebview.dart';

class WebExampleFour extends ChromeSafariBrowser {

  @override
  void onOpened() {}

  @override
  void onCompletedInitialLoad() {}

  @override
  void onClosed() {}
}

And donโ€™t forget to import the flutter_appwebview library

import 'package:flutter_inappwebview/flutter_inappwebview.dart';

And thatโ€™s all for the WebExampleFour page you can now move to the homepage.dart file or any page you want your user to click the button to navigate to the WebExampleFour page.

So on the homepage, we just have to declare a final variable for WebExampleFour and thatโ€™s all

final WebExampleFour inAppChrome = WebExampleFour();

Then, on button pressed

              MaterialButton(
                onPressed: () {
                  inAppChrome.open(
                          url: 'https://obounce.net',
                          options: ChromeSafariBrowserClassOptions(
                              android: AndroidChromeCustomTabsOptions(),
                              ios: IOSSafariOptions()));
                },
                child: Text(
                  'Example 4',
                  style: TextStyle(color: Colors.white),
                ),
                color: Colors.pink[900],
                padding: EdgeInsets.symmetric(horizontal: 70, vertical: 12),
              ),

And thatโ€™s all the major stuff you need to know ๐Ÿ‘Œ, For more explanation kindly check the video tutorial.

Source Code ๐Ÿ‘‡ โ€“ Show some โค๏ธ by starring โญ the repo and do follow me ๐Ÿ˜„!

GitHub โ€“ Flutter Webview

I hope you have learned one thing or the other, kindly give this article much appreciation you want if you enjoy it, feel free to ask a question and leave a comment if you feel like ๐Ÿคญ. Thanks for reading and see you in the next series.

๐Ÿ”— Social Media / Letโ€™s Connect ๐Ÿ”— โ€“> Github | Twitter | Youtube | WhatsApp | LinkedIn | Patreon | Facebook.

Join the Flutter Dev Community ๐Ÿ‘จโ€๐Ÿ’ป๐Ÿ‘จโ€๐Ÿ’ป โ€“> Facebook | Telegram | WhatsApp | Signal.

Subscribe to my Telegram channel | Youtube channel | and also to hashnode newsletter in the input box above ๐Ÿ‘†๐Ÿ‘†. Thanks

Happy Fluttering ๐Ÿฅฐ๐Ÿ‘จโ€๐Ÿ’ป

Exit mobile version