ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Developing Cross-Platform
Apps in Flutter
~ Priyanka Tyagi
¡°Cross-platform development
is the ability to build and deliver
apps that can run across
multiple device platforms.¡±
Agenda
1. Challenges
2. How Flutter helps ?
3. What is Flutter ?
4. Cross-platform Flutter project
5. Anatomy of Flutter app
6. Deployment options
Challenges
Cross-platform development is
Hard.
Screen-form factors + Devices + Platforms =
Interesting developers¡¯ life :)
Credits
Hard for Solo developer to reach out to
all platforms
Developing cross platform apps in Flutter (Android, iOS, and Web)
How Flutter helps ?
¡ñ Code sharing across multiple platforms
¡ñ One code editor for all platforms
¡ñ Own widgets, not dependent on OEM Widgets
¡ñ Great for Custom designs
¡ñ Decent built-in widget library of Material Design and
Cupertino (iOS) widgets
¡ñ Code once, Deploy thrice !
What is Flutter ?
¡ñ Open-sourced SDK to develop cross-platform
applications (by Google)
¡ñ Flutter apps are written in Dart language
¡ñ Flutter is a complete framework which provides:
¡ð UI rendering & Widgets
¡ð State Management
¡ð Hardware APIs
¡ð Navigation
¡ð Testing
Google Trends link
Popular
cross-platform
solutions
Flutter
community
Stats
¡ñ StackOver?ow : ~23K questions
¡ñ Github issues : ~7.5K open issues
¡ñ Github stars : ~74K
¡ñ Gitter : ~9K
¡ñ Reddit FlutterDev : 20.5K
Source: Google Blog
Native SDKs
Separate apps for
each platform
Platform speci?c
Widgets
Different
languages
Source: Hackernoon
JS +
WebViews
PhoneGap (Adobe)
Apache Cordova
Ionic
Source: Hackernoon
Reactive Views
React Native
(2015)
Reactive-style
views for mobile
apps
Context switching:
JS realm ? Native
realm Source: Hackernoon
Flutter (2017)
Reactive-style
views
Dart compiles AOT
into native code for
multiple platforms
No JS Bridge
needed
Source: Hackernoon
Cross-platform Flutter Project
Download & Setup Flutter
Source
Choose your environment
Developing cross platform apps in Flutter (Android, iOS, and Web)
Creating Flutter
Project
CLI (Command Line Interface)
Cross-platform Flutter Project Structure
Android
iOS
Shared code
Web
Dependency
management
`pubspec.yaml`
web/index.html
web/index.html (Firebase)
Tutorial
Running Flutter project
flutter run
Android Studio CLI
flutter run -d Chrome
iOS simulator Android emulator Chrome
Anatomy of Flutter App
Scaffold
AppBar
Text
Center
Column
Text Text
FAB
Icon
title
You have pushed the button... Counter
A
B
C
A C B
Stateless Widget
Text Icon Card
Stateful Widget
Checkbox Radio TextField
¡ñ Immutable
¡ñ Widgets can not be redrawn
¡ñ `build()` method is called only once
¡ñ Mutable.
¡ñ Rebuilds several time over its lifetime
¡ñ `build()` method is called multiple
times
¡ñ Immutable
¡ñ Widgets can not be redrawn
¡ñ `build()` method is called only once
¡ñ Mutable.
¡ñ Rebuilds several time over its lifetime
¡ñ `build()` method is called multiple
times
Stateless Widget Stateful Widget
`main.dart`
Developing cross platform apps in Flutter (Android, iOS, and Web)
Unit Testing
Running test:
flutter test
test/widget_test.dart
test/widget_test.dart
Flutter Web : In technical preview
Source: https://?utter.dev/web
Until Sept- 1st week
Updated: Sept- 2nd week
Caveats
¡ñ Flutter Web is (~was) a fork of Flutter Repo
¡ñ Not all plugins are available for Web in Dart Packages repo: pub like
FlutterFire
¡ñ A set of libraries are platform speci?c
¡ð dart:html: DOM manipulation for web apps.
¡ð dart:io: I/O for non-web apps.
Launching URL
Code Organization Handling Unsupported Platforms
Source code
Custom Fonts
¡ñ Download font
¡ñ `pubspec.yaml`
Using custom font
Developing cross platform apps in Flutter (Android, iOS, and Web)
Developer Tooling
Command Line Tools
¡ñ flutter doctor:
¡ð Checks if your machine has all the needed packages and software to
build ?utter apps.
¡ñ flutter create:
¡ð Generates new ?utter app
¡ñ flutter build:
¡ð Builds ?utter app
¡ñ flutter run:
¡ð Run ?utter app on attached device
Available Commands: `flutter help`
Android Studio: Flutter plugin
Android Studio: Live Templates
Flutter Outline Tool
Deploying Flutter Apps
Deploying Flutter Web App
¡ñ Generate contents in ¡°build/¡± directory:
¡ð `flutter build web`
¡ñ Hosting compiled contents:
¡ð Copy contents from ¡°build/web¡± directory to
hosting directory ¡°public/¡±
Deploying Flutter Native Apps
¡ñ Manually
¡ñ Fastlane (CD) + Travis/Cirrus (CI)
¡ñ CodeMagic (CI/CD)
¡ñ BitRise (CI/CD)
¡ñ CircleCI
Codemagic
(CI/CD)
¡ñ Build
¡ñ Test
¡ñ Deliver
Pricing
Bitrise (CI/CD)
¡ñ Build
¡ñ Test
¡ñ Deliver
Pricing
Exploring Flutter Samples code
flutter create --sample=<id> <your_app_name>
lowercase_with_underscores
Creating app from Flutter samples
How to get sample ids ?
flutter create --list-samples=samples.json
{
"sourcePath": "lib/src/material/switch_list_tile.dart",
"sourceLine": 255,
"serial": "2",
"package": "flutter",
"library": "material",
"element": "SwitchListTile",
"id": "material.SwitchListTile.2",
"file": "material.SwitchListTile.2.dart",
"description": "![Switch list tile semantics
sample](https://flutter.github.io/assets-for-api-docs/assets/mat
erial/switch_list_tile_semantics.png)nnHere is an example of a
custom labeled radio widget, callednLinkedLabelRadio, that
includes an interactive [RichText] widget thatnhandles tap
gestures."
},
Creating app from Flutter sample id
Run "flutter doctor" for information about
installing additional components.
In order to run your sample application,
type:
$ cd svcc19_switch_list_tile
$ flutter run
Your sample application code is in
svcc19_switch_list_tile/lib/main.dart.
flutter create --sample=material.SwitchListTile.2 svcc19_switch_list_tile
1
2 3
Checkout tutorial
Debugger & Pro?ler
Observatory debugger / pro?ler
¡ñ $ flutter run -d all
An Observatory debugger and pro?ler on Android SDK built for
x86 is available at: http://127.0.0.1:52118/b2c0_v_ywns=/
An Observatory debugger and pro?ler on iPhone X? is available
at: http://127.0.0.1:52161/MDl88nhIz78=/
Android emulator observatory debugger/ pro?ler
iOS simulator observatory debugger/ pro?ler
Dart DevTools
Flutter Inspector -> More Actions -> Open DevTools
5 months of Flutter...
Check-out
¡ñ Flutter-to-?y:
https://?utter-to-?y.?rebas
eapp.com/#/
¡ñ Github :
https://github.com/ptyagic
odecamp/x-?utter-landingp
age
Contact
¡ñ Email:
ptyagicodecamp@gmail.com
¡ñ Twitter: @ptyagi13
¡ñ Blog:https://priyankatyagi.dev
Source: Designing Cross platform Flutter prototype for
Landing Page (Web-Hummingbird, Android, iOS)
Check-out
¡ñ Flutter-to-?y:
https://?utter-to-?y.?rebas
eapp.com/#/
¡ñ Github :
https://github.com/ptyagic
odecamp/x-?utter-landingp
age
Contact
¡ñ Email:
ptyagicodecamp@gmail.com
¡ñ Twitter: @ptyagi13
¡ñ Blog:https://priyankatyagi.dev
Part 1: Designing Cross platform Flutter prototype
for Landing Page (Web-Hummingbird, Android,
iOS)
Part 2: Making Cross-platform Flutter Landing
Page Responsive (Web-Hummingbird, Android,
iOS)
Part 3: Using Flutter Themes for Cross-platform
Landing Page (Web-Hummingbird, Android, iOS)
Part 4: Implementing Flutter FactsBot using
DialogFlow
Part 5: Migrating to Flutter 1.9: Implementing
Cross-platform Firebase Login in Flutter Apps
Check-out
¡ñ Flutter-to-?y:
https://?utter-to-?y.?rebas
eapp.com/#/
¡ñ Github :
https://github.com/ptyagic
odecamp/x-?utter-landingp
age
Contact
¡ñ Email:
ptyagicodecamp@gmail.com
¡ñ Twitter: @ptyagi13
¡ñ Blog:https://priyankatyagi.dev
Useful links
¡ñ Installing Flutter
¡ñ Setting up Flutter-Web project
¡ñ https://api.?utter.dev/
¡ñ Dart Packages for Flutter
¡ñ Flutter for Web
¡ñ Testing
¡ñ Getting started with Custom Fonts
¡ñ Google Fonts
¡ñ Flutter Inspector
¡ñ Declarative UI: https://flutter.dev/docs/get-started/flutter-for/declarative
¡ñ Why Dart
¡ñ CircleCI setup, Fastlane deployment
Imagery credits
¡ñ Android, iOS icons , Web icon, Android Studio icon
¡ñ iOS devices, and Android devices
¡ñ Visual Studio icon, IntelliJ Studio icon
¡ñ Team image, money image
Thank you !

More Related Content

What's hot (20)

IPhone Web Development With Grails from CodeMash 2009
IPhone Web Development With Grails from CodeMash 2009IPhone Web Development With Grails from CodeMash 2009
IPhone Web Development With Grails from CodeMash 2009
Christopher Judd
?
Flutter
Flutter Flutter
Flutter
Mohit Nainwal
?
Flutter festival Info session -2022
Flutter festival Info session -2022Flutter festival Info session -2022
Flutter festival Info session -2022
Apoorv Pandey
?
Build beautiful native apps in record time with flutter
Build beautiful native apps in record time with flutterBuild beautiful native apps in record time with flutter
Build beautiful native apps in record time with flutter
RobertLe30
?
Flutter vs React Native
Flutter vs React NativeFlutter vs React Native
Flutter vs React Native
XongoLab Technologies LLP
?
Flutter
FlutterFlutter
Flutter
Toma Velev
?
Flutter not yet another mobile cross-platform framework - i ox-kl19
Flutter   not yet another mobile cross-platform framework - i ox-kl19Flutter   not yet another mobile cross-platform framework - i ox-kl19
Flutter not yet another mobile cross-platform framework - i ox-kl19
oradoe
?
Flutter dart assignment help
Flutter dart assignment helpFlutter dart assignment help
Flutter dart assignment help
calltutors
?
Flutter
FlutterFlutter
Flutter
Mohit Sharma
?
Google I/O 2018 Extended, Baghdad - Flutter
Google I/O 2018 Extended, Baghdad  - FlutterGoogle I/O 2018 Extended, Baghdad  - Flutter
Google I/O 2018 Extended, Baghdad - Flutter
AbdElmomenKadhim
?
The Magic of flutter Comex oman 2019
The Magic of flutter Comex oman 2019The Magic of flutter Comex oman 2019
The Magic of flutter Comex oman 2019
Ahmed Abu Eldahab
?
Flutter tutorial for Beginner Step by Step
Flutter tutorial for Beginner Step by StepFlutter tutorial for Beginner Step by Step
Flutter tutorial for Beginner Step by Step
Chandramouli Biyyala
?
Flutter Development Services
Flutter Development ServicesFlutter Development Services
Flutter Development Services
The NineHertz
?
Flutter app
Flutter appFlutter app
Flutter app
apptunixapp
?
A flight with Flutter
A flight with FlutterA flight with Flutter
A flight with Flutter
Ahmed Tarek
?
Introduction to Flutter - truly crossplatform, amazingly fast
Introduction to Flutter - truly crossplatform, amazingly fastIntroduction to Flutter - truly crossplatform, amazingly fast
Introduction to Flutter - truly crossplatform, amazingly fast
Bartosz Kosarzycki
?
Flutter study jam 2019
Flutter study jam 2019Flutter study jam 2019
Flutter study jam 2019
Ahmed Abu Eldahab
?
Mobile DevOps pipeline using Google Flutter
Mobile DevOps pipeline using Google FlutterMobile DevOps pipeline using Google Flutter
Mobile DevOps pipeline using Google Flutter
Ahmed Abu Eldahab
?
Introduction to flutter's basic concepts
Introduction to flutter's basic conceptsIntroduction to flutter's basic concepts
Introduction to flutter's basic concepts
Kumaresh Chandra Baruri
?
Getting Started with Cross-Platform Mobile Development with Flutter and Dart
Getting Started with Cross-Platform Mobile Development with Flutter and DartGetting Started with Cross-Platform Mobile Development with Flutter and Dart
Getting Started with Cross-Platform Mobile Development with Flutter and Dart
Harshith Keni
?
IPhone Web Development With Grails from CodeMash 2009
IPhone Web Development With Grails from CodeMash 2009IPhone Web Development With Grails from CodeMash 2009
IPhone Web Development With Grails from CodeMash 2009
Christopher Judd
?
Flutter festival Info session -2022
Flutter festival Info session -2022Flutter festival Info session -2022
Flutter festival Info session -2022
Apoorv Pandey
?
Build beautiful native apps in record time with flutter
Build beautiful native apps in record time with flutterBuild beautiful native apps in record time with flutter
Build beautiful native apps in record time with flutter
RobertLe30
?
Flutter not yet another mobile cross-platform framework - i ox-kl19
Flutter   not yet another mobile cross-platform framework - i ox-kl19Flutter   not yet another mobile cross-platform framework - i ox-kl19
Flutter not yet another mobile cross-platform framework - i ox-kl19
oradoe
?
Flutter dart assignment help
Flutter dart assignment helpFlutter dart assignment help
Flutter dart assignment help
calltutors
?
Google I/O 2018 Extended, Baghdad - Flutter
Google I/O 2018 Extended, Baghdad  - FlutterGoogle I/O 2018 Extended, Baghdad  - Flutter
Google I/O 2018 Extended, Baghdad - Flutter
AbdElmomenKadhim
?
The Magic of flutter Comex oman 2019
The Magic of flutter Comex oman 2019The Magic of flutter Comex oman 2019
The Magic of flutter Comex oman 2019
Ahmed Abu Eldahab
?
Flutter tutorial for Beginner Step by Step
Flutter tutorial for Beginner Step by StepFlutter tutorial for Beginner Step by Step
Flutter tutorial for Beginner Step by Step
Chandramouli Biyyala
?
Flutter Development Services
Flutter Development ServicesFlutter Development Services
Flutter Development Services
The NineHertz
?
A flight with Flutter
A flight with FlutterA flight with Flutter
A flight with Flutter
Ahmed Tarek
?
Introduction to Flutter - truly crossplatform, amazingly fast
Introduction to Flutter - truly crossplatform, amazingly fastIntroduction to Flutter - truly crossplatform, amazingly fast
Introduction to Flutter - truly crossplatform, amazingly fast
Bartosz Kosarzycki
?
Mobile DevOps pipeline using Google Flutter
Mobile DevOps pipeline using Google FlutterMobile DevOps pipeline using Google Flutter
Mobile DevOps pipeline using Google Flutter
Ahmed Abu Eldahab
?
Getting Started with Cross-Platform Mobile Development with Flutter and Dart
Getting Started with Cross-Platform Mobile Development with Flutter and DartGetting Started with Cross-Platform Mobile Development with Flutter and Dart
Getting Started with Cross-Platform Mobile Development with Flutter and Dart
Harshith Keni
?

Similar to Developing cross platform apps in Flutter (Android, iOS, and Web) (20)

flutter intro.pptx
flutter intro.pptxflutter intro.pptx
flutter intro.pptx
HajerZitouni3
?
#Code2Create:: Introduction to App Development in Flutter with Dart
#Code2Create:: Introduction to App Development in Flutter with Dart#Code2Create:: Introduction to App Development in Flutter with Dart
#Code2Create:: Introduction to App Development in Flutter with Dart
GDGKuwaitGoogleDevel
?
The magic of flutter
The magic of flutterThe magic of flutter
The magic of flutter
Shady Selim
?
Flutter technology Based on Web Development
Flutter technology Based on Web Development Flutter technology Based on Web Development
Flutter technology Based on Web Development
divyawani2
?
GoogleDSC_ GHRCE_ flutter_firebase.pptx
GoogleDSC_ GHRCE_  flutter_firebase.pptxGoogleDSC_ GHRCE_  flutter_firebase.pptx
GoogleDSC_ GHRCE_ flutter_firebase.pptx
GoogleDeveloperStude22
?
flutterbootcamp
flutterbootcampflutterbootcamp
flutterbootcamp
RakshaAgrawal21
?
flutter_bootcamp_MUGDSC_Presentation.pptx
flutter_bootcamp_MUGDSC_Presentation.pptxflutter_bootcamp_MUGDSC_Presentation.pptx
flutter_bootcamp_MUGDSC_Presentation.pptx
RakshaAgrawal21
?
Android Development using Flutter: From fundamentals to advanced
Android Development using Flutter: From fundamentals to advancedAndroid Development using Flutter: From fundamentals to advanced
Android Development using Flutter: From fundamentals to advanced
Lakshay14663
?
What is flutter and why should i care?
What is flutter and why should i care?What is flutter and why should i care?
What is flutter and why should i care?
Sergi Mart¨ªnez
?
Mobile Application Development class 001
Mobile Application Development class 001Mobile Application Development class 001
Mobile Application Development class 001
Dr. Mazin Mohamed alkathiri
?
Getting started with android dev and test perspective
Getting started with android   dev and test perspectiveGetting started with android   dev and test perspective
Getting started with android dev and test perspective
Gunjan Kumar
?
Mobile development with Flutter
Mobile development with FlutterMobile development with Flutter
Mobile development with Flutter
Awok
?
Flutter alegria event gdsc pillai college of engineering
Flutter alegria event gdsc pillai college of engineeringFlutter alegria event gdsc pillai college of engineering
Flutter alegria event gdsc pillai college of engineering
AnandMenon54
?
Flutter vs React Native | Edureka
Flutter vs React Native | EdurekaFlutter vs React Native | Edureka
Flutter vs React Native | Edureka
Edureka!
?
Hariom_project.pptxjhbyubiyubiyugbybuybybgygy
Hariom_project.pptxjhbyubiyubiyugbybuybybgygyHariom_project.pptxjhbyubiyubiyugbybuybybgygy
Hariom_project.pptxjhbyubiyubiyugbybuybybgygy
hariomhp2003
?
Adopting Flutter in Native Mobile Applications
Adopting Flutter in Native Mobile ApplicationsAdopting Flutter in Native Mobile Applications
Adopting Flutter in Native Mobile Applications
Alexandru Terente
?
Flutter App Development Building Cross-Platform Apps.pdf
Flutter App Development Building Cross-Platform Apps.pdfFlutter App Development Building Cross-Platform Apps.pdf
Flutter App Development Building Cross-Platform Apps.pdf
Shiv Technolabs Pvt. Ltd.
?
Flutter presentation.pptx
Flutter presentation.pptxFlutter presentation.pptx
Flutter presentation.pptx
FalgunSorathiya
?
Android App Development - 01 Introduction
Android App Development - 01 IntroductionAndroid App Development - 01 Introduction
Android App Development - 01 Introduction
Diego Grancini
?
GDSC-FlutterBasics.pdf
GDSC-FlutterBasics.pdfGDSC-FlutterBasics.pdf
GDSC-FlutterBasics.pdf
GDSCSSN
?
#Code2Create:: Introduction to App Development in Flutter with Dart
#Code2Create:: Introduction to App Development in Flutter with Dart#Code2Create:: Introduction to App Development in Flutter with Dart
#Code2Create:: Introduction to App Development in Flutter with Dart
GDGKuwaitGoogleDevel
?
The magic of flutter
The magic of flutterThe magic of flutter
The magic of flutter
Shady Selim
?
Flutter technology Based on Web Development
Flutter technology Based on Web Development Flutter technology Based on Web Development
Flutter technology Based on Web Development
divyawani2
?
flutter_bootcamp_MUGDSC_Presentation.pptx
flutter_bootcamp_MUGDSC_Presentation.pptxflutter_bootcamp_MUGDSC_Presentation.pptx
flutter_bootcamp_MUGDSC_Presentation.pptx
RakshaAgrawal21
?
Android Development using Flutter: From fundamentals to advanced
Android Development using Flutter: From fundamentals to advancedAndroid Development using Flutter: From fundamentals to advanced
Android Development using Flutter: From fundamentals to advanced
Lakshay14663
?
What is flutter and why should i care?
What is flutter and why should i care?What is flutter and why should i care?
What is flutter and why should i care?
Sergi Mart¨ªnez
?
Getting started with android dev and test perspective
Getting started with android   dev and test perspectiveGetting started with android   dev and test perspective
Getting started with android dev and test perspective
Gunjan Kumar
?
Mobile development with Flutter
Mobile development with FlutterMobile development with Flutter
Mobile development with Flutter
Awok
?
Flutter alegria event gdsc pillai college of engineering
Flutter alegria event gdsc pillai college of engineeringFlutter alegria event gdsc pillai college of engineering
Flutter alegria event gdsc pillai college of engineering
AnandMenon54
?
Flutter vs React Native | Edureka
Flutter vs React Native | EdurekaFlutter vs React Native | Edureka
Flutter vs React Native | Edureka
Edureka!
?
Hariom_project.pptxjhbyubiyubiyugbybuybybgygy
Hariom_project.pptxjhbyubiyubiyugbybuybybgygyHariom_project.pptxjhbyubiyubiyugbybuybybgygy
Hariom_project.pptxjhbyubiyubiyugbybuybybgygy
hariomhp2003
?
Adopting Flutter in Native Mobile Applications
Adopting Flutter in Native Mobile ApplicationsAdopting Flutter in Native Mobile Applications
Adopting Flutter in Native Mobile Applications
Alexandru Terente
?
Flutter App Development Building Cross-Platform Apps.pdf
Flutter App Development Building Cross-Platform Apps.pdfFlutter App Development Building Cross-Platform Apps.pdf
Flutter App Development Building Cross-Platform Apps.pdf
Shiv Technolabs Pvt. Ltd.
?
Android App Development - 01 Introduction
Android App Development - 01 IntroductionAndroid App Development - 01 Introduction
Android App Development - 01 Introduction
Diego Grancini
?
GDSC-FlutterBasics.pdf
GDSC-FlutterBasics.pdfGDSC-FlutterBasics.pdf
GDSC-FlutterBasics.pdf
GDSCSSN
?

Recently uploaded (20)

Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptxPackaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
mohayyudin7826
?
STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
?
AI in Talent Acquisition: Boosting Hiring
AI in Talent Acquisition: Boosting HiringAI in Talent Acquisition: Boosting Hiring
AI in Talent Acquisition: Boosting Hiring
Beyond Chiefs
?
Solana Developer Hiring for Enterprises Key Considerations.pdf
Solana Developer Hiring for Enterprises Key Considerations.pdfSolana Developer Hiring for Enterprises Key Considerations.pdf
Solana Developer Hiring for Enterprises Key Considerations.pdf
Lisa ward
?
Recruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OGRecruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OG
Matt Charney
?
CIOs Speak Out - A Research Series by Jasper Colin
CIOs Speak Out - A Research Series by Jasper ColinCIOs Speak Out - A Research Series by Jasper Colin
CIOs Speak Out - A Research Series by Jasper Colin
Jasper Colin
?
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio WebUiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
DianaGray10
?
How to manage technology risk and corporate growth
How to manage technology risk and corporate growthHow to manage technology risk and corporate growth
How to manage technology risk and corporate growth
Arlen Meyers, MD, MBA
?
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
?
How Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet TechnologyHow Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet Technology
CET Technology
?
A General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithmsA General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithms
Buhwan Jeong
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
NTTDOCOMO-ServiceInnovation
?
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMARSTRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
Sarathkumar Narsupalli
?
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
?
Innovative Web Design | Malachite Technologies
Innovative Web Design | Malachite TechnologiesInnovative Web Design | Malachite Technologies
Innovative Web Design | Malachite Technologies
malachitetechnologie1
?
ScotSecure Cyber Security Summit 2025 Edinburgh
ScotSecure Cyber Security Summit 2025 EdinburghScotSecure Cyber Security Summit 2025 Edinburgh
ScotSecure Cyber Security Summit 2025 Edinburgh
Ray Bugg
?
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptxHHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HampshireHUG
?
Rene-Peinado-A-Maritime-Professionals-Journey---.pptx
Rene-Peinado-A-Maritime-Professionals-Journey---.pptxRene-Peinado-A-Maritime-Professionals-Journey---.pptx
Rene-Peinado-A-Maritime-Professionals-Journey---.pptx
Rene Peinado
?
Building High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdfBuilding High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdf
Rafael Burity
?
Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptxPackaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
mohayyudin7826
?
STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
?
AI in Talent Acquisition: Boosting Hiring
AI in Talent Acquisition: Boosting HiringAI in Talent Acquisition: Boosting Hiring
AI in Talent Acquisition: Boosting Hiring
Beyond Chiefs
?
Solana Developer Hiring for Enterprises Key Considerations.pdf
Solana Developer Hiring for Enterprises Key Considerations.pdfSolana Developer Hiring for Enterprises Key Considerations.pdf
Solana Developer Hiring for Enterprises Key Considerations.pdf
Lisa ward
?
Recruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OGRecruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OG
Matt Charney
?
CIOs Speak Out - A Research Series by Jasper Colin
CIOs Speak Out - A Research Series by Jasper ColinCIOs Speak Out - A Research Series by Jasper Colin
CIOs Speak Out - A Research Series by Jasper Colin
Jasper Colin
?
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio WebUiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
DianaGray10
?
How to manage technology risk and corporate growth
How to manage technology risk and corporate growthHow to manage technology risk and corporate growth
How to manage technology risk and corporate growth
Arlen Meyers, MD, MBA
?
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
?
How Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet TechnologyHow Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet Technology
CET Technology
?
A General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithmsA General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithms
Buhwan Jeong
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMARSTRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
Sarathkumar Narsupalli
?
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
?
Innovative Web Design | Malachite Technologies
Innovative Web Design | Malachite TechnologiesInnovative Web Design | Malachite Technologies
Innovative Web Design | Malachite Technologies
malachitetechnologie1
?
ScotSecure Cyber Security Summit 2025 Edinburgh
ScotSecure Cyber Security Summit 2025 EdinburghScotSecure Cyber Security Summit 2025 Edinburgh
ScotSecure Cyber Security Summit 2025 Edinburgh
Ray Bugg
?
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptxHHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HampshireHUG
?
Rene-Peinado-A-Maritime-Professionals-Journey---.pptx
Rene-Peinado-A-Maritime-Professionals-Journey---.pptxRene-Peinado-A-Maritime-Professionals-Journey---.pptx
Rene-Peinado-A-Maritime-Professionals-Journey---.pptx
Rene Peinado
?
Building High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdfBuilding High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdf
Rafael Burity
?

Developing cross platform apps in Flutter (Android, iOS, and Web)