SlideShare a Scribd company logo
1 of 51
www.xam-consulting.com www.michaelridland.com
Welcome
Xamarin Hack Day
Sydney 2016
www.xam-consulting.com www.michaelridland.com
Agenda
9:00 - Presentations & Challenges
Michael Ridland - Introduction to Xamarin
Matthew Robbins - Costs and Benefits Compiled Xaml
Jernej Kavka - Code Sharing
10:30 - Challenges / Install-Fest / Mini-Hacks / Open Hacking
1:00 - Lunch
1:30 - Challenges / Install-Fest / Mini-Hacks / Open Hacking
4:30 - Show and Tell - Show something you’ve built or learnt
www.xam-consulting.com www.michaelridland.com
How you hack is up to you!
 Presenters will set challenges
 You can do any of the challenges
 or work on your own stuff
 mentors will be available to assist
www.xam-consulting.com www.michaelridland.com
Michael Ridland
www.michaelridland.com
www.xam-consulting.com www.michaelridland.com
Mobile Technology Specialists
www.xam-consulting.com www.michaelridland.com
Thanks to our sponsors
www.xam-consulting.com www.michaelridland.com
Thanks to our Mentors and Presenters
www.xam-consulting.com www.michaelridland.com
Introduction to Xamarin
www.xam-consulting.com www.michaelridland.com
What is native?
www.xam-consulting.com www.michaelridland.com
The Anatomy of a Native App
Native User Interfaces Native API Access Native Performance
www.xam-consulting.com www.michaelridland.com
Xamarin’s (Traditional) Approach
Native With
Code Sharing
www.xam-consulting.com www.michaelridland.com
Language Support
Functional Imperative/OOP
F#
C#
www.xam-consulting.com www.michaelridland.com
Base Class Libraries
www.xam-consulting.com www.michaelridland.com
Windows APIs
www.xam-consulting.com www.michaelridland.com
iOS APIs | 100% Coverage
www.xam-consulting.com www.michaelridland.com
Android APIs | 100% Coverage
www.xam-consulting.com www.michaelridland.com
Anything you can do in Objective-C or Java
can be done in C# or F# with Xamarin
Pro Tip
www.xam-consulting.com www.michaelridland.com
Native Performance
Xamarin.iOS does full Ahead Of Time
(AOT) compilation to produce an ARM
binary for Apple’s App Store.
Xamarin.Android takes advantage
of Just In Time (JIT) compilation on
the Android device.
www.xam-consulting.com www.michaelridland.com
Demos - Xamarin Traditional
Demos
www.xam-consulting.com www.michaelridland.com
Always Up To Date
Same day support for
iOS 5, iOS 6, iOS 6.1,
iOS 7, iOS 7.1, iOS 8…
www.xam-consulting.com www.michaelridland.com
Future Proof
Always up-to-date with the latest APIs from
Apple and Google.
Full Support for Android TV, Fire TV, Android Wear, Google Glass, etc
www.xam-consulting.com www.michaelridland.com
Rich Library EcoSystem
Json.NET Rx
…and many more!
www.xam-consulting.com www.michaelridland.com
Development Environments
www.xam-consulting.com www.michaelridland.com
Development Environment
Xamarin Studio
PC or Mac
Visual Studio Plugin
VS 2010/2012/2013
www.xam-consulting.com www.michaelridland.com
Development Environment
or even?
www.xam-consulting.com www.michaelridland.com
Visual Studio Integration
www.xam-consulting.com www.michaelridland.com
Android Designer
www.xam-consulting.com www.michaelridland.com
iOS Designer
Fully integrated into Xamarin
Studio & Visual Studio
iOS 6 & 7 Storyboard support
Intuitive event handling
Support for auto-layout
Live preview of custom controls
www.xam-consulting.com www.michaelridland.com
Component Store
www.xam-consulting.com www.michaelridland.com
Component Vendors
www.xam-consulting.com www.michaelridland.com
Xamarin.Forms
www.xam-consulting.com www.michaelridland.com
Xamarin.Forms
Xamarin.FormsTraditional Xamarin approach
Shared UI Code
www.xam-consulting.com www.michaelridland.com
Xamarin.Forms: What’s Included?
 40+ Pages, Layouts, and Controls
 Build from code or XAML
 Two-way Data Binding
 Navigation
 Animation API
 Dependency Service
 Messaging Center
www.xam-consulting.com www.michaelridland.com
Xamarin.Forms: Pages
Content MasterDetail Navigation Tabbed Carousel
www.xam-consulting.com www.michaelridland.com
Xamarin.Forms: Layouts
Stack Absolute Relative Grid ContentView ScrollView Frame
www.xam-consulting.com www.michaelridland.com
Xamarin.Forms: Controls
ActivityIndicator BoxView Button DatePicker Editor
Entry Image Label ListView Map
OpenGLView Picker ProgressBar SearchBar Slider
Stepper TableView TimePicker WebView EntryCell
ImageCell SwitchCell TextCell ViewCell
www.xam-consulting.com www.michaelridland.com
Xamarin.Forms Real World Tips
www.xam-consulting.com www.michaelridland.com
Beware……
 Forms is easy…
 Easy is also deceptively simple…..
www.xam-consulting.com www.michaelridland.com
Beware……
I hate Xamarin.Forms
www.xam-consulting.com www.michaelridland.com
Beware……
 Your still on a phone with limited resources…
 Forms Xaml is not like WPF, Xamarin don’t own the underlying platforms
 With Forms you must build pages with Performance in mind…
www.xam-consulting.com www.michaelridland.com
Performance Tips
 Reduce nesting
 StackLayouts encourage nesting
 Grid are great for reducing nesting
 Avoid relative layout
 Reduce layout cycles
 Grids with Star and Static Height avoid layout cycles
www.xam-consulting.com www.michaelridland.com
Xamarin.Forms Power Controls
www.xam-consulting.com www.michaelridland.com
Grid
Not difficult to use (nearly as easy as StackLayout)
Works well with XAML (unlike relative)
Can be used to create overlays/advanced UIs
Easy to reduce nesting
Easy to reduce layout cycles (Star and Static
Widths/Heights)
www.xam-consulting.com www.michaelridland.com
ListView with Cell Recycling
 Much faster now with Cell Recycling
 Use the DataTemplateSelector for different cell styles
 Alternative to Grid when there’s a dynamic numbers of rows
 Avoid add/remove views when binding context change
www.xam-consulting.com www.michaelridland.com
Images on Android (especially in list)
 Performance and Memory Issues
 Use FFImageLoader
 Image Caching
 Image Resizing
 If the Image is local, it can still have issues in lists. We sometimes do a
full custom renderer native cell for Android only.
www.xam-consulting.com www.michaelridland.com
Xamarin.Forms Real Apps
www.xam-consulting.com www.michaelridland.com
File -> New
www.xam-consulting.com www.michaelridland.com
Today’s Challenge
 Build a view (maybe from http://snppts.io/latest or dribble)
 It can be simplified or adapted depending on your experience
 Improve the performance
 http://kent-boogaart.com/blog/jason-smith's-xamarin-forms-performance-
tips
 https://evolve.xamarin.com/session/56e205b0bad314273ca4d817
 https://developer.xamarin.com/guides/xamarin-
forms/deployment,_testing,_and_metrics/performance/
www.xam-consulting.com www.michaelridland.com
Q & A
Michael Ridland
michael@michaelridland.com
@rid00z
www.michaelridland.com

More Related Content

What's hot

Frontend Workshop
Frontend WorkshopFrontend Workshop
Frontend WorkshopWilfred Nas
 
Présentation WordCamp Paris 2015 - Inside da WeB
Présentation WordCamp Paris 2015 - Inside da WeBPrésentation WordCamp Paris 2015 - Inside da WeB
Présentation WordCamp Paris 2015 - Inside da WeBSébastien Grillot
 
WordPress Web Design in Birmingham (Infographic)
WordPress Web Design in Birmingham (Infographic)WordPress Web Design in Birmingham (Infographic)
WordPress Web Design in Birmingham (Infographic)Opace Web Design
 
I will do mailchimp landing page,template design and automation
I will do mailchimp landing page,template design and automationI will do mailchimp landing page,template design and automation
I will do mailchimp landing page,template design and automationkaewsarwp
 
A Simple Way to Customize Your Site
A Simple Way to Customize Your SiteA Simple Way to Customize Your Site
A Simple Way to Customize Your SiteLiam Dempsey
 
Breaking the norm with creative CSS
Breaking the norm with creative CSSBreaking the norm with creative CSS
Breaking the norm with creative CSSAgnieszka Naplocha
 

What's hot (7)

Frontend Workshop
Frontend WorkshopFrontend Workshop
Frontend Workshop
 
Présentation WordCamp Paris 2015 - Inside da WeB
Présentation WordCamp Paris 2015 - Inside da WeBPrésentation WordCamp Paris 2015 - Inside da WeB
Présentation WordCamp Paris 2015 - Inside da WeB
 
WordPress Web Design in Birmingham (Infographic)
WordPress Web Design in Birmingham (Infographic)WordPress Web Design in Birmingham (Infographic)
WordPress Web Design in Birmingham (Infographic)
 
[Da Nang Scrum Breakfast] Angular Tour
[Da Nang Scrum Breakfast] Angular Tour[Da Nang Scrum Breakfast] Angular Tour
[Da Nang Scrum Breakfast] Angular Tour
 
I will do mailchimp landing page,template design and automation
I will do mailchimp landing page,template design and automationI will do mailchimp landing page,template design and automation
I will do mailchimp landing page,template design and automation
 
A Simple Way to Customize Your Site
A Simple Way to Customize Your SiteA Simple Way to Customize Your Site
A Simple Way to Customize Your Site
 
Breaking the norm with creative CSS
Breaking the norm with creative CSSBreaking the norm with creative CSS
Breaking the norm with creative CSS
 

Similar to Xamarin Hack Day - Sydney 2016 - Introduction to Xamarin

Introduction to Xamarin.Forms and Lessons Learnt
Introduction to Xamarin.Forms and Lessons LearntIntroduction to Xamarin.Forms and Lessons Learnt
Introduction to Xamarin.Forms and Lessons LearntMichael Ridland
 
Xamarin.iOS Presentation
Xamarin.iOS PresentationXamarin.iOS Presentation
Xamarin.iOS PresentationMichael Ridland
 
Building Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with DrupalBuilding Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with DrupalFour Kitchens
 
Responsive Design: Out of the Box and Down the Rabbit Hole
Responsive Design: Out of the Box and Down the Rabbit HoleResponsive Design: Out of the Box and Down the Rabbit Hole
Responsive Design: Out of the Box and Down the Rabbit HoleDan Moriarty
 
State of Union: Xamarin & Cross-Platform .NET in 2016 and Beyond
State of Union: Xamarin & Cross-Platform .NET in 2016 and BeyondState of Union: Xamarin & Cross-Platform .NET in 2016 and Beyond
State of Union: Xamarin & Cross-Platform .NET in 2016 and BeyondNick Landry
 
Truth About Websites: Why Squarespace vs WordPress for Small Business
Truth About Websites: Why Squarespace vs WordPress for Small BusinessTruth About Websites: Why Squarespace vs WordPress for Small Business
Truth About Websites: Why Squarespace vs WordPress for Small BusinessComBridges
 
The Future is Responsive
The Future is ResponsiveThe Future is Responsive
The Future is ResponsiveZURB
 
960 grid psd
960 grid psd960 grid psd
960 grid psdRaju Nag
 
Introduction to Responsive Design v.2
Introduction to Responsive Design v.2Introduction to Responsive Design v.2
Introduction to Responsive Design v.2Clarissa Peterson
 
Build a responsive website with drupal
Build a responsive website with drupalBuild a responsive website with drupal
Build a responsive website with drupalShyamala Rajaram
 
Responsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPHResponsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPHPeytz Design
 
Why Customers Love Responsive Design (And You Should Too!)
Why Customers Love Responsive Design (And You Should Too!)Why Customers Love Responsive Design (And You Should Too!)
Why Customers Love Responsive Design (And You Should Too!)BrightEdge
 
Introduction to Xamarin - Confoo 2015
Introduction to Xamarin - Confoo 2015Introduction to Xamarin - Confoo 2015
Introduction to Xamarin - Confoo 2015Guy Barrette
 
MW2011 Grid-based Web Design presentation
MW2011 Grid-based Web Design presentationMW2011 Grid-based Web Design presentation
MW2011 Grid-based Web Design presentationCharlie Moad
 
How to Create a Successful Web App & Cloud Based Startup in Armenia
How to Create a Successful Web App & Cloud Based Startup in Armenia How to Create a Successful Web App & Cloud Based Startup in Armenia
How to Create a Successful Web App & Cloud Based Startup in Armenia Digital Pomegranate
 
Build a responsive website with drupal
Build a responsive website with drupalBuild a responsive website with drupal
Build a responsive website with drupalTechday7
 
Responsive Web Design Basics
Responsive Web Design BasicsResponsive Web Design Basics
Responsive Web Design BasicsAustin Walker
 
Mobile First: Responsive Design for eCommerce | Imagine 2013 Technology | B…
Mobile First: Responsive Design for eCommerce | Imagine 2013 Technology | B…Mobile First: Responsive Design for eCommerce | Imagine 2013 Technology | B…
Mobile First: Responsive Design for eCommerce | Imagine 2013 Technology | B…Atwix
 

Similar to Xamarin Hack Day - Sydney 2016 - Introduction to Xamarin (20)

Introduction to Xamarin
Introduction to XamarinIntroduction to Xamarin
Introduction to Xamarin
 
Introduction to Xamarin
Introduction to XamarinIntroduction to Xamarin
Introduction to Xamarin
 
Introduction to Xamarin.Forms and Lessons Learnt
Introduction to Xamarin.Forms and Lessons LearntIntroduction to Xamarin.Forms and Lessons Learnt
Introduction to Xamarin.Forms and Lessons Learnt
 
Xamarin.iOS Presentation
Xamarin.iOS PresentationXamarin.iOS Presentation
Xamarin.iOS Presentation
 
Building Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with DrupalBuilding Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with Drupal
 
Responsive Design: Out of the Box and Down the Rabbit Hole
Responsive Design: Out of the Box and Down the Rabbit HoleResponsive Design: Out of the Box and Down the Rabbit Hole
Responsive Design: Out of the Box and Down the Rabbit Hole
 
State of Union: Xamarin & Cross-Platform .NET in 2016 and Beyond
State of Union: Xamarin & Cross-Platform .NET in 2016 and BeyondState of Union: Xamarin & Cross-Platform .NET in 2016 and Beyond
State of Union: Xamarin & Cross-Platform .NET in 2016 and Beyond
 
Truth About Websites: Why Squarespace vs WordPress for Small Business
Truth About Websites: Why Squarespace vs WordPress for Small BusinessTruth About Websites: Why Squarespace vs WordPress for Small Business
Truth About Websites: Why Squarespace vs WordPress for Small Business
 
The Future is Responsive
The Future is ResponsiveThe Future is Responsive
The Future is Responsive
 
960 grid psd
960 grid psd960 grid psd
960 grid psd
 
Introduction to Responsive Design v.2
Introduction to Responsive Design v.2Introduction to Responsive Design v.2
Introduction to Responsive Design v.2
 
Build a responsive website with drupal
Build a responsive website with drupalBuild a responsive website with drupal
Build a responsive website with drupal
 
Responsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPHResponsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPH
 
Why Customers Love Responsive Design (And You Should Too!)
Why Customers Love Responsive Design (And You Should Too!)Why Customers Love Responsive Design (And You Should Too!)
Why Customers Love Responsive Design (And You Should Too!)
 
Introduction to Xamarin - Confoo 2015
Introduction to Xamarin - Confoo 2015Introduction to Xamarin - Confoo 2015
Introduction to Xamarin - Confoo 2015
 
MW2011 Grid-based Web Design presentation
MW2011 Grid-based Web Design presentationMW2011 Grid-based Web Design presentation
MW2011 Grid-based Web Design presentation
 
How to Create a Successful Web App & Cloud Based Startup in Armenia
How to Create a Successful Web App & Cloud Based Startup in Armenia How to Create a Successful Web App & Cloud Based Startup in Armenia
How to Create a Successful Web App & Cloud Based Startup in Armenia
 
Build a responsive website with drupal
Build a responsive website with drupalBuild a responsive website with drupal
Build a responsive website with drupal
 
Responsive Web Design Basics
Responsive Web Design BasicsResponsive Web Design Basics
Responsive Web Design Basics
 
Mobile First: Responsive Design for eCommerce | Imagine 2013 Technology | B…
Mobile First: Responsive Design for eCommerce | Imagine 2013 Technology | B…Mobile First: Responsive Design for eCommerce | Imagine 2013 Technology | B…
Mobile First: Responsive Design for eCommerce | Imagine 2013 Technology | B…
 

Recently uploaded

08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 

Recently uploaded (20)

08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

Xamarin Hack Day - Sydney 2016 - Introduction to Xamarin

Editor's Notes

  1. Fix this with website stuff
  2. As you will see in our demos with Xamarin.Forms that 75% shared code can go even higher. Fully native apps written in C# Share on average 75% source code across platforms C# + .NET Runtime Native UI Native Performance
  3. As you will see in our demos with Xamarin.Forms that 75% shared code can go even higher. Fully native apps written in C# Share on average 75% source code across platforms C# + .NET Runtime Native UI Native Performance