Ahmed Abu Eldahab
Senior Technical Consultant
Google Developer Expert in Flutter
Flutter Egypt founder @FlutterEgypt
/Dahabdev /Dahabdev /Dahabit/Dahabdev
About Us
FlutterEgypt
- World first Flutter community ( our first meetup was 27th
january 2018)
- World first Flutter community that join Together with Google
Developers (30th april 2018)
/FlutterEgypt
@dahabdev@FlutterEgypt
@dahabdev@FlutterEgypt
● Mobile applications development in 2019
● Understand the fundamentals of the Flutter framework.
● Write real Flutter code
● Use Flutter's tools to enhance your development process.
● Understand how to apply DevOps pipeline using Flutter
● CI/CD integration with Flutter
WHY ARE WE HERE?
What is Flutter?
Flutter is the next step in
App development
Speed and performance
Fast , smooth performance
Flexibility
Customize anything - Brand
first design
Native look and feel
Familiarity , ease of use
Rapid Development
Easy to learn , predictable
Control every pixel on the screen
Make your brand come to life
Never say "no" to your designer
Stand out in the marketplace
Win awards with beautiful UI
Beautiful
Sub-second reload times
Paint your app to life
Iterate rapidly on features
Test hypotheses quicker than ever
More time to experiment & test
features
Single-codebase for faster collab
3X Productivity Gains
Productive
Everything is free and open source
Layered architecture: easy to extend
Deep platform integrations
Hundreds of third-party packages
(ads, videos, database, cloud etc.)
Open
What makes Flutter unique?
- Compiles to Native Code (ARM Binary code)
- No reliance on OEM widgets
- No bridge needed
- No markup language (only Dart)
● Language and Libraries
● Packages manager https://pub.dartlang.org/
● Virtual machine
● Compile to Javascript dart2js
Batteries included
HTML/CSS Analogs in Flutter
var container = new Container( // grey box
child: new Text(
"Lorem ipsum",
style: new TextStyle(
fontSize: 24.0
fontWeight: FontWeight.w900,
fontFamily: "Georgia",
),
),
width: 320.0,
height: 240.0,
color: Colors.grey[300],
);
<div class="greybox">
Lorem ipsum
</div>
.greybox {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Georgia;
}
Google Fuchsia
Fuchsia is a capability-based, real-time operating system (RTOS)
currently being developed by Google.
https://github.com/fuchsia-mirror/