Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
What's New in Flutter (By: Adil Soomro) - DevFe...
Search
GDG Lahore
PRO
December 15, 2024
Programming
0
28
What's New in Flutter (By: Adil Soomro) - DevFest Lahore 2024
Talk by Adil Soomro (
https://www.linkedin.com/in/adilsoomro/
) at DevFest Lahore 2024 by GDG Lahore.
GDG Lahore
PRO
December 15, 2024
Tweet
Share
More Decks by GDG Lahore
See All by GDG Lahore
Build Smarter n Faster: AI Magic with Google AI Studio & Gemini CLI (By: Shaeera Sahi) - Google I/O Extended 2025
gdglahore
PRO
1
20
Beyond the IDE - Unlocking Productivity with AI Agents and Gemini CLI (By: Mashhood Rastgar) - Google I/O Extended 2025
gdglahore
PRO
1
10
Agentic AI in Action with Google ADK (By: Rabbia Arshad) - Google I/O Extended 2025
gdglahore
PRO
1
17
Smarter Apps, Smoother Experiences with Flutter + Firebase AI (By: Sakina Abbas) - Google I/O Extended 2025
gdglahore
PRO
1
14
Exploring Agentic AI with ROI for High Impact Industries (By: Shaheer Khawaja & Muhammad Hassan Raza) - Google I/O Extended 2025
gdglahore
PRO
1
25
Developer Keynote (By: Huzaifa Habib) - Google I/O Extended 2025
gdglahore
PRO
1
22
Google AI Studio: Advanced Features (By: Ehtisham Raza) - Google I/O Extended 2025
gdglahore
PRO
0
22
Engineering Smart AI Agents: RAG, Gemini, and Beyond (By: Yasir Siddique) - Google I/O Extended 2025
gdglahore
PRO
0
45
Integrating Google Maps in a Jetpack Compose App (By: Tauheed Ali) - DevFest Lahore 2024
gdglahore
PRO
0
12
Other Decks in Programming
See All in Programming
物語を動かす行動"量" #エンジニアニメ
konifar
14
5.4k
エンジニアのための”最低限いい感じ”デザイン入門
shunshobon
0
130
A Gopher's Guide to Vibe Coding
danicat
0
170
The state patternの実践 個人開発で培ったpractice集
miyanokomiya
0
150
Google I/O recap web編 大分Web祭り2025
kponda
0
2.9k
Scale out your Claude Code ~自社専用Agentで10xする開発プロセス~
yukukotani
9
2.6k
CEDEC2025 長期運営ゲームをあと10年続けるための0から始める自動テスト ~4000項目を50%自動化し、月1→毎日実行にした3年間~
akatsukigames_tech
0
150
CEDEC 2025 『ゲームにおけるリアルタイム通信への QUIC導入事例の紹介』
segadevtech
3
970
Jakarta EE Core Profile and Helidon - Speed, Simplicity, and AI Integration
ivargrimstad
0
190
Portapad紹介プレゼンテーション
gotoumakakeru
1
130
State of CSS 2025
benjaminkott
1
120
未来を拓くAI技術〜エージェント開発とAI駆動開発〜
leveragestech
2
180
Featured
See All Featured
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Code Review Best Practice
trishagee
70
19k
Done Done
chrislema
185
16k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Fireside Chat
paigeccino
39
3.6k
Into the Great Unknown - MozCon
thekraken
40
2k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Making Projects Easy
brettharned
117
6.3k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
139
34k
Gamification - CAS2011
davidbonilla
81
5.4k
Transcript
Adil Soomro BooleanBites | Imagitor What's new in Flutter
What is Flutter?
Pick a platform 01 Build your app 02 Pick another
platform 03 Build your app 04 Pick another platform 05 Build your app… 06 Traditional development
02 Pick a platform 01 Build your app 05 And
another 04 And another 03 Pick another platform With Flutter
Where do you want your app to run? What do
you want to build?
iOS Android Web Google Earth
iOS Android Google Pay
None
Source: JetBrains 2023 State of Developer Ecosystem survey The most
popular cross-platform framework in the world*
Portable Beautiful Fast Productive Open 5 Pillars Beautiful Portable Productive
Fast Open
Impeller
← Frames → ← ms → Shader compilation
Flutter engine lead “You can't jank due to shader compilation
if there is no shader compilation”
wonderous.app Impeller
Impeller Better performance Faster rendering for complex shapes Faster blur
effects on iOS
iOS Android
flutter run --no-enable-impeller
Build with the Gemini API
Easily integrate generative AI features Tap into Google's most capable
and general family of models Build cross-platform AI-powered apps Google AI Dart SDK
aistudio.google.com Google AI Studio
$ flutter pub add google_generative_ai
import 'package:google_generative_ai/google_generative_ai.dart'; final apiKey = Platform.environment['GOOGLE_API_KEY']!; void main() async {
final model = GenerativeModel(model: 'gemini-pro', apiKey: apiKey); final content = [ Content.text("Write a short story about Flutter and Dart"), ]; final response = await model.generateContent(content); print(response.text); }
$ flutter pub add firebase_vertexai
final model = FirebaseVertexAI.instance.generativeModel( model: 'gemini-pro' ); final content =
[ Content.text("Write a short story about Flutter and Dart"), ]; final response = await model.generateContent(content); print(response.text);
None
Complex Navigation Slow to Apply Overwhelming Lack of Personalization Traditional
search
Natural Language Queries Flexibility Context Awareness User-friendly
flutter.dev/ai
Swift Package Manager Macros WASM
flutter.dev
Thank you!