cft

Developing Cross-Platform Applications using Flutter

Flutter is a framework developed by Google to make apps that run on all platforms using same code.


user

Prateek Aher

3 years ago | 5 min read

The hotshots at Google decided to enter the arena of cross-platform development after mobile frameworks such as Ionic, React Native, and Xamarin turned out well.

From a business perspective, cross-platform apps offer the possibility to significantly reduce the development time and cost. They also put an end to the hiring of different software development teams for managing codebases on different platforms. This affects both, the company's bottom line as well as time-to-market for their product.

Hence came a framework which supports app development on both, Android, and iOS, using a single codebase.


Introduction

Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase.

It is an open-source SDK, primarily developed and sponsored by Google. It uses Dart as a programming language, ensuring a single codebase for your project. Dart is a modern, Object-Oriented Programming language, created by Google and has been around since 2011.

Officially introduced by Google in Feb 2018 as a freely available open-source UI toolkit, Flutter has been growing since, attracting a developers’ community and companies interested in the rapid development of their apps.


How Does Flutter work?

Widgets

Widgets are the building blocks of a Flutter app’s user interface. These are the elements inside the code that (like classes) describe how the final interface of the application should look like. Widgets in Flutter can be texts, images, or more complex components. They can be easily composed, combined, and embedded inside each other, without the need to assign attributes.

In fact,

Every single thing you see rendered in the UI, It’s all widgets.

Typically, widgets are composed of many other small, single-purpose widgets that combine to produce powerful effects. For example, to center a piece of text, you put the text in a Text widget and wrap it as a child in a Center widget.

Centering a Text in Flutter
Centering a Text in Flutter

This allows for a Declarative/Reactive approach to making user interfaces (rather than an imperative approach), which greatly speeds up the development process.

Full Control over Every Pixel

In traditional Android apps, the system libraries provide the components responsible for drawing themselves to a Canvas object, which Android can then render with Skia, a graphics engine written in C/C++ that calls the CPU or GPU to paint the UI on the device.

A demo application screen painted by the same Flutter engine on Android and iOS devices
A demo application screen painted by the same Flutter engine on Android and iOS devices

A typical Cross-Platform framework creates an abstraction layer over the underlying native Android and iOS UI libraries. The code in which the app is often written is used to interact with Android (Java) or iOS (Objective-C) system libraries to display UI.

Flutter bypasses all these abstractions by using its own set of widgets (including Google's Material Design and iOS' Cupertino widgets).

That’s right, Flutter does not use the OEM widgets (or DOM WebViews), it provides its own widgets.

The Dart code used by Flutter apps to paint the UI is directly compiled into native code "Ahead of Time" (AoT) using Flutter's own copy of Skia as part of its rendering engine.

This allows developers to equip their apps with the latest performance improvements even if the operating system running them is not the latest version. This is true for every platform which Flutter apps run on including macOS, Windows, Android, and iOS.

Here's a brief overview of how Flutter works:

Flutter widgets interacting with native components.
Flutter widgets interacting with native components.

The Flutter portion of the app sends messages to its host, the iOS or Android portion of the app, over a platform channel. The host listens on the platform channel and receives the message. It then calls the platform-specific APIs and sends a response back to the client, the Flutter portion of the app. These messages and responses are passed intermittently, to ensure the user interface remains responsive.

All that Flutter requires of the platform is a canvas in which to render the widgets so they can appear on the device screen, and access events (touches, timers, etc.) and services (location, camera, etc.).


Why Flutter Rocks?

Hot Reload

If you ask any of Flutter app developers what their favorite part of Flutter is, they'll say it's Hot Reload.

Hot Reload demo. After making changes in code, the Increment button turns into decrement button in milliseconds.
Hot Reload demo. After making changes in code, the Increment button turns into decrement button in milliseconds.

During development, Flutter uses a JIT compiler that can reload and continue executing code usually in under a second. It implements the change in your UI without reloading the whole app or messing with inputs and variables.

Independence from Platform Updates

Flutter apps are separated from all native components of OS. Even if Android or iOS updates its controls, the apps will retain their appearance and functionality.

Open Source

Flutter is open-source. It is continuously being developed by the community. Moreover, despite the open-source distribution, Google strongly supports this technology, consistently updating the framework. The best part is that its development is driven dominantly by the developers' community.

Fast Programming

Flutter needs to create and destroy a multitude of short-lived objects very fast. Dart's garbage collection’ is well suited for this purpose, and it is reflected in the performance of the apps. Dart is a straightforward language to learn, and I doubt it'll stop you from trying out Flutter. Consider this simple class written in Dart:

A Book Class in Dart
A Book Class in Dart

See for yourself. Its syntax is similar to most Object-Oriented Languages. Of course, there is some language-specific syntactical sugar, and you can start writing code that is more inherent once you learn the language, but the point is that the learning curve is rather small. The Flutter team had a good reason to choose it as its foundational programming language. Read about it here.

The Flutter Community

This is perhaps the best thing about Flutter. Despite being the new kid on the block, it has amassed the support of a myriad of developers across the globe in such a short time. There are constant discussions on Flutter-related discord servers between newbies and experienced developers every other day. I usually get my queries answered within a couple of hours there. If my questions' length is unsuited for fast-paced conversations, I put it on StackOverflow with the #flutter tag. Their response time is mindblowing.


Learning Resources

Documentation

Flutter Official Documentation
Flutter Official Documentation

If you have had experience with any of the other programming languages in the past, reading the official Flutter documentation is the simplest answer. You will find everything – articles on how to set up the environment, Widget catalog, and API reference. There are also many tutorials and samples that show new developers how to use Flutter API and build beautiful apps in record-breaking time.

The Boring Flutter Development Show

I recommend The Boring Flutter Development Show for anyone who wants to see real Googlers struggle and learn from their mistakes. A fun way to learn Flutter. The idea behind it is to show everyone that developers are not prodigies or superhumans and that they are as prone to mistakes as we are. This show also helps people from shedding their imposter syndrome. All of this while making stuff using Flutter.

Widget of The Week

A YouTube playlist from Google developers to learn about Flutter widgets. It’s a playlist with short one-minute videos, each one regarding a single widget per video available in the Flutter SDK. I highly recommend you give it a try as it has many great videos to help you discover and learn about Flutter widgets. They launch 1 video every week, hence - Widget of the Week.

Courses

For those who are fans of instructor-led courses, 2 excellent courses come recommended, both of which are suited for newbies and intermediate developers alike:

  1. Dr. Angela Yu's The Complete 2021 Flutter Development Bootcamp with Dart. This one comes recommended by the Flutter team themselves.
  2. Maximilian Schwarzmüller's - Flutter & Dart - The Complete Guide [2021 Edition].


I hope my article encouraged some of you to try out Flutter for building your apps. If you liked it, consider tweeting it to your network.

Ciao!

Originally posted at The Daily Prateek

Upvote


user
Created by

Prateek Aher

I write rich & meaningful content on development, technology, & life lessons.


people
Post

Upvote

Downvote

Comment

Bookmark

Share


Related Articles