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
29
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
29
Beyond the IDE - Unlocking Productivity with AI Agents and Gemini CLI (By: Mashhood Rastgar) - Google I/O Extended 2025
gdglahore
PRO
1
13
Agentic AI in Action with Google ADK (By: Rabbia Arshad) - Google I/O Extended 2025
gdglahore
PRO
2
25
Smarter Apps, Smoother Experiences with Flutter + Firebase AI (By: Sakina Abbas) - Google I/O Extended 2025
gdglahore
PRO
1
17
Exploring Agentic AI with ROI for High Impact Industries (By: Shaheer Khawaja & Muhammad Hassan Raza) - Google I/O Extended 2025
gdglahore
PRO
1
28
Developer Keynote (By: Huzaifa Habib) - Google I/O Extended 2025
gdglahore
PRO
1
23
Google AI Studio: Advanced Features (By: Ehtisham Raza) - Google I/O Extended 2025
gdglahore
PRO
0
23
Engineering Smart AI Agents: RAG, Gemini, and Beyond (By: Yasir Siddique) - Google I/O Extended 2025
gdglahore
PRO
0
50
Integrating Google Maps in a Jetpack Compose App (By: Tauheed Ali) - DevFest Lahore 2024
gdglahore
PRO
0
13
Other Decks in Programming
See All in Programming
PHPに関数型の魂を宿す〜PHP 8.5 で実現する堅牢なコードとは〜 #phpcon_hiroshima / phpcon-hiroshima-2025
shogogg
1
230
Pull-Requestの内容を1クリックで動作確認可能にするワークフロー
natmark
2
510
iOSエンジニア向けの英語学習アプリを作る!
yukawashouhei
0
190
dynamic!
moro
10
8k
CSC305 Lecture 04
javiergs
PRO
0
270
Serena MCPのすすめ
wadakatu
4
1k
CSC509 Lecture 06
javiergs
PRO
0
260
XP, Testing and ninja testing ZOZ5
m_seki
3
670
組込みだけじゃない!TinyGo で始める無料クラウド開発入門
otakakot
0
270
スマホから Youtube Shortsを見られないようにする
lemolatoon
27
32k
デミカツ切り抜きで面倒くさいことはPythonにやらせよう
aokswork3
0
240
なぜGoのジェネリクスはこの形なのか? Featherweight Goが明かす設計の核心
ryotaros
7
1.1k
Featured
See All Featured
The Illustrated Children's Guide to Kubernetes
chrisshort
49
51k
Building Better People: How to give real-time feedback that sticks.
wjessup
369
20k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
115
20k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.2k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.2k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Context Engineering - Making Every Token Count
addyosmani
6
250
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
37
2.6k
Docker and Python
trallard
46
3.6k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
GitHub's CSS Performance
jonrohan
1032
470k
Large-scale JavaScript Application Architecture
addyosmani
514
110k
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!