Skip to content

This Repository helps you to start with Awesome Cross-Platform Called Flutter.

Notifications You must be signed in to change notification settings

MEGATeamMU/Flutter-RoadMap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

Mobile Application

Mobile Application Development Is One Of The Most Sought-After Fields In The Labor Market, And Therefore It Is Of Great Interest To Companies And Developers. It Also Enjoys A Lot Of Diversity Through The Approaches Available To Develop The Application .. We Will Now Learn About What Is The Mobile Operating System And How Does It Work?

The operating system contains 4 main layers:

1- Kernal and Device Driver

What is meant by it are the operating system definitions to allow you to play audio and image files and all known definitions.. and it is a layer with which neither the user nor the developer interacts.

2- Core OS

And it is a layer that contains all the basic and main system files without which the system will not work, it will stop .. as it is in the Windows system .. There is a folder called Windows that contains all system files .. If you delete files inside this folder, you will not be able to run the system Run again, and therefore it is a layer that it is not desirable to deal with as a developer or as a user of the system.

3- Core Service & Media

Finally, this layer is what you deal with as a developer and as a user, and here is this layer in a simplified way through which the system provides all the tools and programs that allow you to deal with media such as audio, images, video, camera operation or audio recording through your application, and this layer usually deals with Developers and users in a simple way.

4- OEM Widget - Original User Interface

This layer represents 90% of the developer's work.. In this layer, each company has standards and a specific form through which the application of the system appears, for example..

  • Android system It uses a specific system called Material Design, which provides a set of shapes and designs that help developers implement their application.

  • ios system It uses a completely different design system called Human User Interface

If we notice, we will find that all the applications of each system are very similar .. For example, all applications of the Android system are similar to each other, as well as for the iOS system.

Thus, we talked about the smartphone operating system, so let's move on to the two systems that provide application programming for smartphones


Flutter VS IOS

We have two ways to program applications and they are..

  • Native And it is an application programming that works on one operating system only.. For example, in the iOS operating system, if you decide to write it in Native, it will work on the iOS system only and will not work on any other system such as Android.

The languages ​​that will be used in application programming are Swift or Objective C.

  • Cross-platform The meaning of cross is diversity or plurality and it was.. This system allows you to write one code to be able to run your application on more than one system and this is what is available in filters.

With one code that you created with filters, you can run it on more than one operating system such as Android, iOS, desktop operating systems and also the web!

Flutter VS Android

We will talk about the Android operating system through Native It is exactly the same as the idea of programming an application for iOS, but the language used is different, which is Java or Kotlin.

And here we think a little. If you want to implement a simple application for Android and iOS via Native, it will take a long time to implement on the two systems with their different languages, but through the cross platform, you can do this with one code that works on both systems with ease.


Architecture

- Native

In the native apps, whether it is Android or iOS, the native app code talks to the Platform to create OEM Widgets or for accessing various Services like audio, sensors, camera, etc. The widgets are rendered to a screen canvas, and events are passed back to the widgets. This architecture restricts the widgets to be reused across all platforms as they are OEM specific. And, this is the reason we have to write whole app for each platform separately.

- Flutter

Now, coming to the Flutter apps. Flutter solves the most challenging part of the other cross-platform frameworks, i.e. getting rid of the BRIDGE. Flutter does not use the OEM widgets, it provides its own widgets. Flutter moves the widgets and the renderer from the Platform into the app, which allows them to be customizable and extensible. This also helps Flutter to maintain the consistent 60 FPS.


What's Flutter

  • Flutter is defined as the Google’s UI toolkit for building beautiful, natively compiled applications for mobile (Android, iOS ) desktop (Linux, Mac, Windows, Google Fuchsia) and the web from a single codebase.
  • Flutter uses programming language which was introduced by Google in 2011 and is rarely used by developers. Dart syntax is easy to understand for JavaScript or Java developers as it supports most of the object-oriented concepts.

Benefits of Flutter

- Productivity:

Since Flutter is cross-platform, you can use the same code base for your iOS and Android app. This can definitely save you both time and resources.

- Performance:

Dart compiles into native code and there is no need to access OEM widgets as Flutter has its own, this means faster code execution.

- Fast and simple development:

One of the most lauded features of Flutter is hot reload which allows you to instantly view the changes made in the code on emulators, simulators and hardware in less than a second.

- Compatibility:

Since widgets are part of the app and not the platform, you’ll likely experience less or no compatibility issues on different OS versions.

- Open-source:

Both Flutter and Dart are open-source in github and free to use.


This is the beginning of an introduction to what we are coming to now.. You can find out more details from here.

Basics

Dev Enviroment

Here you can choose your preferred dev environment..

Offline

Online

Language

At first we learn the programming language Dart .. we learn it perfectly!! Choose one of the next resourses..


Flutter

You must watch the video “What are Flutter” before starting any course so that you can understand what is coming next ..

Everything is a widget ..

After you have studied the Dart course, there is an important thing that you must know, which is that filters are a set of widgets that you must know in order to be able to start..

Networking

After you know about all the widgets in Flutter, you should know what is meant by API and how you can make your application connected to a specific API.. Through the following videos, you will be able to understand what is meant by Networking ..

What's API

English

Arabic

About

This Repository helps you to start with Awesome Cross-Platform Called Flutter.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published