In this tutoriYou will learn and explore how to use Flutter FittedBox and SizedBox widgets with several code examples.
Flutter: The Lifeline of Cross-platform Application Development
When it comes to building mobile apps, Android & iOS are the best-suited platforms. Both of them require different coding for giving birth to an app. Such things create a nuisance for the organizations, who are into the app creation genre. That’s mainly, the cross-platform development came into limelight. With cross-platform app development, your app […]
Swift vs. Flutter – A Step by Step Comparison for iOS App Development
In this modern era, many mobile app development agencies are moving towards hybrid platforms for developing mobile applications due to innumerable reasons. Some are startups that face budget constraints and want a mobile app in a small timeframe. To achieve both the factors, “flutter mobile app development became new phenomenon, which is entirely different from […]
Flutter Scaffold Widget Example
In this article we will learn everything about Scaffold Widget. We will cover what are other widgets which you can use with scaffold widget. We will also cover what are the uses of Scaffold Widget. After creating a new Flutter project. Replace your main.dart file with this code. // main.dartimport ‘package:flutter/material.dart’;void main() => runApp(new MyApp());class […]
Flutter Full Screen Splash Screen Tutorial
In this example you will learn how to implement Full Screen Splash Screen in Flutter. You will also learn how to hide status bar on Android OS and notch on iOS in your flutter splash screen. We will create two screens. Our launcher screen will be Screen with full screen Image. And after defined splash […]
Flutter Left and Right Navigation Drawer Example Tutorial
In this tutorial you will learn how to add Navigation Drawer Layout in your Flutter App. You will learn how to add Left Navigation Drawer ( Drawer which opens from start side or right side ) and right Navigation Drawer (Drawer layout which slides from end or left side of the screen). We will be […]
Flutter Dart Tutorial Android iOS
Here we will share our flutter learning path. whatever I will learn about flutter I will update it on my blog so you can benefit also. In this tutorial you will learn how to develop high quality cross platform but Native Looking Android and iOS Mobile apps very easily using Flutter SDK by Google. Programming […]
Flutter Making Network Calls and Parsing JSON Example Tutorial
How to Parse JSON data in Flutter SDK and showing parsed response in Flutter ListView: In this tutorial we will cover following: How to make API/Network Calls in Flutter. How to parse JSON Object in Flutter SDK. How to parse JSON Array in Flutter SDK. Mapping JSON into Dart Model classes. Showing JSON Response into […]
Flutter Scrollable layout using SingleChildScrollView Example
If you ever faced the issue of content going below the screen in your Android or iOS application. If we talk about Android we use ScrollView, our parent element is ScrollView and anything which is under ScrollView becomes scrollable. In iOS, we set content size of UiScrollView. Using Flutter we have SingleChildScrollView Widget. We will […]
Flutter PageView ViewPager + UIScrollView with circular dots tutorial
In this article, We will learn how to implement View Pager or UIScrollView in Flutter using PageView Widget in Flutter. Implementing ViewPager functionality in Flutter using PageView. Adding circular indicator dots with PageView in Flutter. This article assumes you have basic knowledge of Flutter SDK and Dart. You should have knowledge of Widgets and Packages […]