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
2
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
Integrating Google Maps in a Jetpack Compose App (By: Tauheed Ali) - DevFest Lahore 2024
gdglahore
PRO
0
1
Using LIT to analyze Gemma Models in Keras (By: Syeda Maria Hussain) - DevFest Lahore 2024
gdglahore
PRO
0
2
Reimagine App Development with FlutterFlow (By: Sameer Shahzad) - DevFest Lahore 2024
gdglahore
PRO
0
2
Introducing GenC (By: Ahsan Goheer) - DevFest Lahore 2024
gdglahore
PRO
0
3
RAGs powered by Google Search (By: Shajeel Afzal) - DevFest Lahore 2024
gdglahore
PRO
0
2
Building an AI Powered Game in Flutter (By: Sakina Abbas) - DevFest Lahore 2024
gdglahore
PRO
0
3
Sleeper Agents: Deceptive LLMS & Safety Training (By: Haleema Tallat) - DevFest Lahore 2024
gdglahore
PRO
0
2
Connect GenAI models to the outside world (By: Ehtisham Raza) - DevFest Lahore 2024
gdglahore
PRO
0
1
FLAME: Better Serverless architecture with Kubernetes (By: Sheharyar Naseer) - DevFest Lahore 2024
gdglahore
PRO
0
4
Other Decks in Programming
See All in Programming
Webエンジニア主体のモバイルチームの 生産性を高く保つためにやったこと
igreenwood
0
330
テストケースの名前はどうつけるべきか?
orgachem
PRO
0
130
クリエイティブコーディングとRuby学習 / Creative Coding and Learning Ruby
chobishiba
0
3.8k
急成長期の品質とスピードを両立するフロントエンド技術基盤
soarteclab
0
920
RWC 2024 DICOM & ISO/IEC 2022
m_seki
0
200
プロダクトの品質に コミットする / Commit to Product Quality
pekepek
2
760
103 Early Hints
sugi_0000
1
210
menu基盤チームによるGoogle Cloudの活用事例~Application Integration, Cloud Tasks編~
yoshifumi_ishikura
0
100
Criando Commits Incríveis no Git
marcelgsantos
2
160
モバイルアプリにおける自動テストの導入戦略
ostk0069
0
100
今年一番支援させていただいたのは認証系サービスでした
satoshi256kbyte
1
250
macOS なしで iOS アプリを開発する(※ただし xxx に限る)
mitsuharu
1
180
Featured
See All Featured
Building an army of robots
kneath
302
44k
Rebuilding a faster, lazier Slack
samanthasiow
79
8.7k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
251
21k
Unsuck your backbone
ammeep
669
57k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
6.9k
Fontdeck: Realign not Redesign
paulrobertlloyd
82
5.3k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
665
120k
A designer walks into a library…
pauljervisheath
204
24k
VelocityConf: Rendering Performance Case Studies
addyosmani
326
24k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
10
800
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
1.9k
How to Think Like a Performance Engineer
csswizardry
22
1.2k
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!