Dec 01, 2018 Flutter

Flutter 101: Basic Introduction and How to Install it

Flutter is an open-source and free framework for creating a mobile application for both Android and iOS devices. It is developed by Google. This is one of the booming technology in recent days. Dart Programming Language is used in Flutter. Google…

Dec 01, 2018 Flutter

Flutter: Create Splash, Drawer Screen, Navigate to New Screen

Flutter: Create Splash Screen According to a recent survey, 50% of mobile users will stop using an app or Website that is loading for more than 3 seconds. So that you need to create the loading screen more creatively and…

Dec 08, 2018 Flutter

Flutter: Add/Change Launcher App Icon, Share Button, Play Store Review

In this article, we will see How to change the launcher app icon in Flutter. Let's start it. For creating the Launcher icon use Android Asset Studio for editing. Tap Launcher icon generator. Some default icons will be there if you…

Dec 08, 2018 Flutter

Flutter: How to Use WebView, Add Progress bar, Push Notification

You can easily convert your existing website into Android mobile app using Flutter. If you want to embed your website inside Flutter app, all you have to do use flutter plugin named plugin named “Webview”. In this tutorial I going…

Dec 04, 2018 Flutter

Flutter: Access Android Settings Menu

This flutter plugin helps to open only on Android devices. The iOS section has not implemented this plugin. Add Package in Main Dart File At the main dart file enter the basic package,  import ‘package:flutter/material.dart’; import 'package:flutter/services.dart'; Install Access_Settings_menu in…