Introduction To Xamarin Form
Introduction To Xamarin Form
Introduction To Xamarin Form
Platform-specific
projects act as
"host" to create
native application
Portable Class Library used to hold
shared code that defines UI and logic
Most of your code will go into the PCL used for shared logic + UI
Application Page(s)
Displays a single
piece of content
(visual thing)
Content
Page is an abstract class used to define a single screen of content. Derived
types provide specific visualization/ behavior
Manages two
panes of
information
Manages a stack
of pages with
navigation bar
Page that
navigates
between children
using tab bar
Page allowing
swipe gestures to
switch between Page that
children navigates
between children
using tab bar
Content Master Detail Navigation Tabbed Carousel
View is the base class for all visual controls, most standard controls are
presents
StackLayout
Layout containers organize child elements based on specific rules
StackLayout AbsoluteLayout
Layout containers organize child elements based on specific rules
this.Content = layout;
Views are laid out and rendered in the order they appear in the collection
Padding
Height
Content
Content may itself be a container