├── .gitignore
├── ExtendedCells
├── ExtendedCells.sln
├── ExtendedCells
│ ├── ExtendedCells.Forms.Plugin.Abstractions
│ │ ├── ExtendedCells.Forms.Plugin.Abstractions.csproj
│ │ ├── ExtendedTextCell.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── packages.config
│ ├── ExtendedCells.Forms.Plugin.Android
│ │ ├── ExtendedCells.Forms.Plugin.Android.csproj
│ │ ├── ExtendedTextCellRenderer.cs
│ │ ├── ExtensionsMethods
│ │ │ ├── TextAlignmentExtensions.cs
│ │ │ └── TextViewExtensions.cs
│ │ ├── Models
│ │ │ └── ExtendedCellTableLayout.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── AboutResources.txt
│ │ │ └── Resource.Designer.cs
│ │ ├── TableRowSketch.sketchcs
│ │ └── packages.config
│ ├── ExtendedCells.Forms.Plugin.WindowsPhone
│ │ ├── ExtendedCells.Forms.Plugin.WindowsPhone.csproj
│ │ ├── ExtendedTextCellRenderer.cs
│ │ ├── ExtensionMethods
│ │ │ ├── ColorExtensions.cs
│ │ │ ├── GridLengthExtensions.cs
│ │ │ └── TextAlignmentExtensions.cs
│ │ ├── Models
│ │ │ └── ExtendedTextCellSampleModel.cs
│ │ ├── Pages
│ │ │ ├── NativeListviewControl.xaml
│ │ │ └── NativeListviewControl.xaml.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── README_FIRST.txt
│ │ ├── Toolkit.Content
│ │ │ ├── ApplicationBar.Add.png
│ │ │ ├── ApplicationBar.Cancel.png
│ │ │ ├── ApplicationBar.Check.png
│ │ │ ├── ApplicationBar.Delete.png
│ │ │ └── ApplicationBar.Select.png
│ │ ├── ValueConverters
│ │ │ ├── TextToVisibilityConverter.cs
│ │ │ ├── ThicknessToMarginConverter.cs
│ │ │ ├── ToNativeColorConverter.cs
│ │ │ ├── ToNativeFontFamilyConverter.cs
│ │ │ ├── ToNativeFontSizeConverter.cs
│ │ │ ├── ToNativeFontStyleConverter.cs
│ │ │ ├── ToNativeFontWeightConverter.cs
│ │ │ ├── ToNativeGridLengthConverter.cs
│ │ │ └── ToNativeTextAlignmentConverter.cs
│ │ └── packages.config
│ ├── ExtendedCells.Forms.Plugin.iOSUnified
│ │ ├── ExtendedCells.Forms.Plugin.iOSUnified.csproj
│ │ ├── ExtendedTextCellRenderer.cs
│ │ ├── ExtensionMethods
│ │ │ └── UILabelExtensions.cs
│ │ ├── Models
│ │ │ └── NativeiOSCell.cs
│ │ ├── NativeiOSCell.sketchcs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── packages.config
│ └── ExtendedCells.Forms.Plugin.nuspec
├── README.md
└── SampleApp
│ ├── SampleApp.Droid
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── MainActivity.cs
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-xhdpi
│ │ │ └── icon.png
│ │ ├── drawable-xxhdpi
│ │ │ └── icon.png
│ │ └── drawable
│ │ │ └── icon.png
│ ├── SampleApp.Droid.csproj
│ └── packages.config
│ ├── SampleApp.WinPhone
│ ├── App.cs
│ ├── App.xaml
│ ├── Assets
│ │ ├── AlignmentGrid.png
│ │ ├── ApplicationIcon.png
│ │ └── Tiles
│ │ │ ├── FlipCycleTileLarge.png
│ │ │ ├── FlipCycleTileMedium.png
│ │ │ ├── FlipCycleTileSmall.png
│ │ │ ├── IconicTileMediumLarge.png
│ │ │ └── IconicTileSmall.png
│ ├── LocalizedStrings.cs
│ ├── MainPage.cs
│ ├── MainPage.xaml
│ ├── Properties
│ │ ├── AppManifest.xml
│ │ ├── AssemblyInfo.cs
│ │ └── WMAppManifest.xml
│ ├── README_FIRST.txt
│ ├── Resources
│ │ ├── AppResources.Designer.cs
│ │ └── AppResources.resx
│ ├── SampleApp.WinPhone.csproj
│ ├── SplashScreenImage.jpg
│ ├── Toolkit.Content
│ │ ├── ApplicationBar.Add.png
│ │ ├── ApplicationBar.Cancel.png
│ │ ├── ApplicationBar.Check.png
│ │ ├── ApplicationBar.Delete.png
│ │ └── ApplicationBar.Select.png
│ └── packages.config
│ ├── SampleApp.iOS
│ ├── AppDelegate.cs
│ ├── Application.cs
│ ├── Entitlements.plist
│ ├── Info.plist
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── Default-568h@2x.png
│ │ ├── Default-Portrait.png
│ │ ├── Default-Portrait@2x.png
│ │ ├── Default.png
│ │ ├── Default@2x.png
│ │ ├── Icon-60@2x.png
│ │ ├── Icon-60@3x.png
│ │ ├── Icon-76.png
│ │ ├── Icon-76@2x.png
│ │ ├── Icon-Small-40.png
│ │ ├── Icon-Small-40@2x.png
│ │ ├── Icon-Small-40@3x.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon-Small@3x.png
│ │ └── LaunchScreen.storyboard
│ ├── SampleApp.iOS.csproj
│ ├── iTunesArtwork
│ ├── iTunesArtwork@2x
│ └── packages.config
│ └── SampleApp
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Images
│ ├── CoolMask.svg
│ ├── CoolMask.xaml
│ ├── Elvis.svg
│ ├── Elvis.xaml
│ ├── NavigateIcon.xaml
│ ├── tiger.svg
│ └── tiger.xaml
│ ├── Models
│ ├── Colors.cs
│ ├── MenuItem.cs
│ └── Person.cs
│ ├── Pages
│ ├── ExtendedTextCellListview.xaml
│ ├── ExtendedTextCellListview.xaml.cs
│ ├── ExtendedTextCellTableView.xaml
│ ├── ExtendedTextCellTableView.xaml.cs
│ ├── StackLayoutCell.xaml
│ ├── StackLayoutCell.xaml.cs
│ ├── Styles.xaml
│ └── Styles.xaml.cs
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── SampleApp.csproj
│ ├── ViewModel
│ └── ListviewViewModel.cs
│ └── packages.config
├── ExtendedListview
├── ExtendedListview.sln
├── ExtendedListview
│ ├── ExtendedListview.Forms.Plugin.Abstractions
│ │ ├── ExtendedListview.Forms.Plugin.Abstractions.csproj
│ │ ├── ExtendedListview.cs
│ │ ├── LoadMoreQuery.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── packages.config
│ ├── ExtendedListview.Forms.Plugin.Android
│ │ ├── ExtendedListview.Forms.Plugin.Android.csproj
│ │ ├── ExtendedListviewImplementation.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── AboutResources.txt
│ │ │ └── Resource.Designer.cs
│ │ └── packages.config
│ ├── ExtendedListview.Forms.Plugin.WindowsPhone
│ │ ├── ExtendedListview.Forms.Plugin.WindowsPhone.csproj
│ │ ├── ExtendedListviewImplementation.cs
│ │ ├── ExtensionsMethods
│ │ │ └── IEnumerableExtensions.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── README_FIRST.txt
│ │ ├── Toolkit.Content
│ │ │ ├── ApplicationBar.Add.png
│ │ │ ├── ApplicationBar.Cancel.png
│ │ │ ├── ApplicationBar.Check.png
│ │ │ ├── ApplicationBar.Delete.png
│ │ │ └── ApplicationBar.Select.png
│ │ └── packages.config
│ ├── ExtendedListview.Forms.Plugin.iOS
│ │ ├── ExtendedListview.Forms.Plugin.iOS.csproj
│ │ ├── ExtendedListviewImplementation.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── packages.config
│ ├── ExtendedListview.Forms.Plugin.iOSUnified
│ │ ├── ExtendedListview.Forms.Plugin.iOSUnified.csproj
│ │ ├── ExtendedListviewImplementation.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── packages.config
│ └── ExtendedListview.Forms.Plugin.nuspec
└── SampleApp
│ └── SampleApp
│ ├── SampleApp.Droid
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── MainActivity.cs
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── Resource.Designer.cs
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-xhdpi
│ │ │ └── icon.png
│ │ ├── drawable-xxhdpi
│ │ │ └── icon.png
│ │ └── drawable
│ │ │ └── icon.png
│ ├── SampleApp.Droid.csproj
│ └── packages.config
│ ├── SampleApp.WinPhone
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── ApplicationIcon.png
│ ├── Assets
│ │ ├── AlignmentGrid.png
│ │ ├── ApplicationIcon.png
│ │ └── Tiles
│ │ │ ├── FlipCycleTileLarge.png
│ │ │ ├── FlipCycleTileMedium.png
│ │ │ ├── FlipCycleTileSmall.png
│ │ │ ├── IconicTileMediumLarge.png
│ │ │ └── IconicTileSmall.png
│ ├── FlipCycleTileLarge.png
│ ├── FlipCycleTileMedium.png
│ ├── FlipCycleTileSmall.png
│ ├── IconicTileMediumLarge.png
│ ├── IconicTileSmall.png
│ ├── LocalizedStrings.cs
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Properties
│ │ ├── AppManifest.xml
│ │ ├── AssemblyInfo.cs
│ │ └── WMAppManifest.xml
│ ├── README_FIRST.txt
│ ├── Resources
│ │ ├── AppResources.Designer.cs
│ │ └── AppResources.resx
│ ├── SampleApp.WinPhone.csproj
│ ├── Toolkit.Content
│ │ ├── ApplicationBar.Add.png
│ │ ├── ApplicationBar.Cancel.png
│ │ ├── ApplicationBar.Check.png
│ │ ├── ApplicationBar.Delete.png
│ │ └── ApplicationBar.Select.png
│ └── packages.config
│ ├── SampleApp.iOS
│ ├── AppDelegate.cs
│ ├── Entitlements.plist
│ ├── Info.plist
│ ├── Main.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── Default-568h@2x.png
│ │ ├── Default-Portrait.png
│ │ ├── Default-Portrait@2x.png
│ │ ├── Default.png
│ │ ├── Default@2x.png
│ │ ├── Icon-60@2x.png
│ │ ├── Icon-60@3x.png
│ │ ├── Icon-76.png
│ │ ├── Icon-76@2x.png
│ │ ├── Icon-Small-40.png
│ │ ├── Icon-Small-40@2x.png
│ │ ├── Icon-Small-40@3x.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon-Small@3x.png
│ │ └── LaunchScreen.storyboard
│ ├── SampleApp.iOS.csproj
│ ├── iTunesArtwork
│ ├── iTunesArtwork@2x
│ └── packages.config
│ └── SampleApp
│ ├── App.cs
│ ├── Models
│ └── Person.cs
│ ├── Pages
│ ├── IncrementalListview.xaml
│ └── IncrementalListview.xaml.cs
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── SampleApp.csproj
│ ├── ViewModels
│ └── ListviewViewModel.cs
│ └── packages.config
├── ExtendedMap
├── ExtendedMap.sln
├── ExtendedMap
│ ├── ExtendedMap.Forms.Plugin.Abstractions
│ │ ├── CustomMapContentView.cs
│ │ ├── ExtendedMap.Forms.Plugin.Abstractions.csproj
│ │ ├── ExtendedMap.cs
│ │ ├── ExtensionMethods
│ │ │ └── DateTimeExtensions.cs
│ │ ├── Footer.cs
│ │ ├── FooterDetail.cs
│ │ ├── FooterMaster.cs
│ │ ├── Images
│ │ │ ├── browser-icon.svg
│ │ │ ├── browser-icon.xaml
│ │ │ ├── navigate-icon-expanded.svg
│ │ │ ├── navigate-icon-expanded.xaml
│ │ │ ├── navigate-icon.svg
│ │ │ ├── navigate-icon.xaml
│ │ │ ├── phone-icon.svg
│ │ │ ├── phone-icon.xaml
│ │ │ ├── share-icon.svg
│ │ │ └── share-icon.xaml
│ │ ├── Models
│ │ │ ├── Colors.cs
│ │ │ ├── ExtendedPin.cs
│ │ │ ├── ExtraDetailModel.cs
│ │ │ ├── NavigationModel.cs
│ │ │ ├── ScheduleEntry.cs
│ │ │ └── Url.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Services
│ │ │ ├── IPhoneService.cs
│ │ │ └── UIHelper.cs
│ │ ├── Sketches
│ │ │ └── Footer.sketchcs
│ │ ├── ViewModels
│ │ │ └── FooterMasterViewModel.cs
│ │ ├── Views
│ │ │ ├── FooterMasterContentView.xaml
│ │ │ └── FooterMasterContentView.xaml.cs
│ │ └── packages.config
│ ├── ExtendedMap.Forms.Plugin.Android
│ │ ├── ExtendedMap.Forms.Plugin.Android.csproj
│ │ ├── ExtendedMapRenderer.cs
│ │ ├── Extensions
│ │ │ └── ObjectExtensions.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── AboutResources.txt
│ │ │ └── Resource.Designer.cs
│ │ ├── Services
│ │ │ └── PhoneService.cs
│ │ └── packages.config
│ ├── ExtendedMap.Forms.Plugin.WindowsPhone
│ │ ├── ExtendedMap.Forms.Plugin.WindowsPhone.csproj
│ │ ├── ExtendedMapRenderer.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── README_FIRST.txt
│ │ ├── Services
│ │ │ └── PhoneService.cs
│ │ ├── Toolkit.Content
│ │ │ ├── ApplicationBar.Add.png
│ │ │ ├── ApplicationBar.Cancel.png
│ │ │ ├── ApplicationBar.Check.png
│ │ │ ├── ApplicationBar.Delete.png
│ │ │ └── ApplicationBar.Select.png
│ │ └── packages.config
│ ├── ExtendedMap.Forms.Plugin.iOS
│ │ ├── ExtendedMap.Forms.Plugin.iOS.csproj
│ │ ├── ExtendedMapRenderer.cs
│ │ ├── Models
│ │ │ ├── ExtendedMapAnnotation.cs
│ │ │ └── MapDelegate.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Services
│ │ │ └── PhoneService.cs
│ │ ├── defaultPin.png
│ │ └── packages.config
│ └── ExtendedMap.Forms.Plugin.nuspec
├── README.md
└── SampleApp
│ ├── SampleApp.Droid
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── MainActivity.cs
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-xhdpi
│ │ │ └── icon.png
│ │ ├── drawable-xxhdpi
│ │ │ └── icon.png
│ │ └── drawable
│ │ │ ├── Chicken.png
│ │ │ ├── FoodBowl.png
│ │ │ └── icon.png
│ ├── SampleApp.Droid.csproj
│ └── packages.config
│ ├── SampleApp.WinPhone
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Assets
│ │ ├── AlignmentGrid.png
│ │ ├── ApplicationIcon.png
│ │ └── Tiles
│ │ │ ├── FlipCycleTileLarge.png
│ │ │ ├── FlipCycleTileMedium.png
│ │ │ ├── FlipCycleTileSmall.png
│ │ │ ├── IconicTileMediumLarge.png
│ │ │ └── IconicTileSmall.png
│ ├── LocalizedStrings.cs
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Properties
│ │ ├── AppManifest.xml
│ │ ├── AssemblyInfo.cs
│ │ └── WMAppManifest.xml
│ ├── README_FIRST.txt
│ ├── Resources
│ │ ├── AppResources.Designer.cs
│ │ └── AppResources.resx
│ ├── SampleApp.WinPhone.csproj
│ ├── SplashScreenImage.jpg
│ ├── Toolkit.Content
│ │ ├── ApplicationBar.Add.png
│ │ ├── ApplicationBar.Cancel.png
│ │ ├── ApplicationBar.Check.png
│ │ ├── ApplicationBar.Delete.png
│ │ └── ApplicationBar.Select.png
│ └── packages.config
│ ├── SampleApp.iOS
│ ├── AppDelegate.cs
│ ├── Entitlements.plist
│ ├── Info.plist
│ ├── Main.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── Chicken.png
│ │ ├── Default-568h@2x.png
│ │ ├── Default-Portrait.png
│ │ ├── Default-Portrait@2x.png
│ │ ├── Default.png
│ │ ├── Default@2x.png
│ │ ├── FoodBowl.png
│ │ ├── Icon-60@2x.png
│ │ ├── Icon-60@3x.png
│ │ ├── Icon-76.png
│ │ ├── Icon-76@2x.png
│ │ ├── Icon-Small-40.png
│ │ ├── Icon-Small-40@2x.png
│ │ ├── Icon-Small-40@3x.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon-Small@3x.png
│ │ └── LaunchScreen.storyboard
│ ├── SampleApp.iOS.csproj
│ ├── iTunesArtwork
│ ├── iTunesArtwork@2x
│ └── packages.config
│ └── SampleApp
│ ├── App.cs
│ ├── Helpers
│ └── Icons.cs
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── SampleApp.csproj
│ ├── ViewModels
│ └── ExtendedMapViewModel.cs
│ └── packages.config
├── KeyboardOverlap
├── KeyboardOverlap.sln
├── KeyboardOverlap
│ ├── KeyboardOverlap.Forms.Plugin.iOSUnified
│ │ ├── Extensions
│ │ │ └── ViewExtensions.cs
│ │ ├── KeyboardOverlap.Forms.Plugin.iOSUnified.csproj
│ │ ├── KeyboardOverlapRenderer.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── packages.config
│ └── KeyboardOverlap.Forms.Plugin.nuspec
├── README.md
└── SampleApp
│ ├── .DS_Store
│ ├── SampleApp.iOS
│ ├── AppDelegate.cs
│ ├── Application.cs
│ ├── Entitlements.plist
│ ├── Info.plist
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── Default-568h@2x.png
│ │ ├── Default-Portrait.png
│ │ ├── Default-Portrait@2x.png
│ │ ├── Default.png
│ │ ├── Default@2x.png
│ │ ├── Icon-60@2x.png
│ │ ├── Icon-60@3x.png
│ │ ├── Icon-76.png
│ │ ├── Icon-76@2x.png
│ │ ├── Icon-Small-40.png
│ │ ├── Icon-Small-40@2x.png
│ │ ├── Icon-Small-40@3x.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon-Small@3x.png
│ │ └── LaunchScreen.storyboard
│ ├── SampleApp.iOS.csproj
│ ├── iTunesArtwork
│ ├── iTunesArtwork@2x
│ └── packages.config
│ └── SampleApp
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Models
│ └── PageTitle.cs
│ ├── Pages
│ ├── EntriesOnly.xaml
│ ├── EntriesOnly.xaml.cs
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── MultiLineText.xaml
│ ├── MultiLineText.xaml.cs
│ ├── SearchBarPage.xaml
│ ├── SearchBarPage.xaml.cs
│ ├── TabsPage.cs
│ ├── WithOtherContent.xaml
│ ├── WithOtherContent.xaml.cs
│ ├── WithScrollView.xaml
│ └── WithScrollView.xaml.cs
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── SampleApp.csproj
│ ├── ViewModel
│ └── MainPageViewModel.cs
│ └── packages.config
├── LICENSE.md
├── README.md
├── RoundedBoxView
├── README.md
├── RoundedBoxView.sln
├── RoundedBoxView
│ ├── RoundedBoxView.Forms.Plugin.Abstractions
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── RoundedBoxView.Forms.Plugin.Abstractions.csproj
│ │ ├── RoundedBoxView.cs
│ │ └── packages.config
│ ├── RoundedBoxView.Forms.Plugin.Android
│ │ ├── ExtensionMethods
│ │ │ └── ViewExtensions.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ └── AboutResources.txt
│ │ ├── RoundedBoxView.Forms.Plugin.Android.csproj
│ │ ├── RoundedBoxViewImplementation.cs
│ │ └── packages.config
│ ├── RoundedBoxView.Forms.Plugin.WindowsPhone
│ │ ├── ExtensionMethods
│ │ │ ├── BorderExtensions.cs
│ │ │ ├── ColorExtensions.cs
│ │ │ └── RectangleExtensions.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── README_FIRST.txt
│ │ ├── RoundedBoxView.Forms.Plugin.WindowsPhone.csproj
│ │ ├── RoundedBoxViewImplementation.cs
│ │ ├── Toolkit.Content
│ │ │ ├── ApplicationBar.Add.png
│ │ │ ├── ApplicationBar.Cancel.png
│ │ │ ├── ApplicationBar.Check.png
│ │ │ ├── ApplicationBar.Delete.png
│ │ │ └── ApplicationBar.Select.png
│ │ └── packages.config
│ ├── RoundedBoxView.Forms.Plugin.iOS
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── RoundedBoxView.Forms.Plugin.iOS.csproj
│ │ ├── RoundedBoxViewImplementation.cs
│ │ └── packages.config
│ ├── RoundedBoxView.Forms.Plugin.iOSUnified
│ │ ├── ExtensionMethods
│ │ │ └── UIViewExtensions.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── RoundedBoxView.Forms.Plugin.iOSUnified.csproj
│ │ ├── RoundedBoxViewImplementation.cs
│ │ └── packages.config
│ └── RoundedBoxView.Forms.Plugin.nuspec
└── SampleApp
│ ├── SampleApp.Droid
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── MainActivity.cs
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-xhdpi
│ │ │ └── icon.png
│ │ ├── drawable-xxhdpi
│ │ │ └── icon.png
│ │ └── drawable
│ │ │ └── icon.png
│ ├── SampleApp.Droid.csproj
│ └── packages.config
│ ├── SampleApp.WinPhone
│ ├── App.cs
│ ├── App.xaml
│ ├── Assets
│ │ ├── AlignmentGrid.png
│ │ ├── ApplicationIcon.png
│ │ └── Tiles
│ │ │ ├── FlipCycleTileLarge.png
│ │ │ ├── FlipCycleTileMedium.png
│ │ │ ├── FlipCycleTileSmall.png
│ │ │ ├── IconicTileMediumLarge.png
│ │ │ └── IconicTileSmall.png
│ ├── LocalizedStrings.cs
│ ├── MainPage.cs
│ ├── MainPage.xaml
│ ├── Properties
│ │ ├── AppManifest.xml
│ │ ├── AssemblyInfo.cs
│ │ └── WMAppManifest.xml
│ ├── README_FIRST.txt
│ ├── Resources
│ │ ├── AppResources.Designer.cs
│ │ └── AppResources.resx
│ ├── RoundedRectangleNative.xaml
│ ├── RoundedRectangleNative.xaml.cs
│ ├── SampleApp.WinPhone.csproj
│ ├── SplashScreenImage.jpg
│ ├── Toolkit.Content
│ │ ├── ApplicationBar.Add.png
│ │ ├── ApplicationBar.Cancel.png
│ │ ├── ApplicationBar.Check.png
│ │ ├── ApplicationBar.Delete.png
│ │ └── ApplicationBar.Select.png
│ └── packages.config
│ ├── SampleApp.iOS
│ ├── AppDelegate.cs
│ ├── Application.cs
│ ├── Entitlements.plist
│ ├── Info.plist
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── Default-568h@2x.png
│ │ ├── Default-Portrait.png
│ │ ├── Default-Portrait@2x.png
│ │ ├── Default.png
│ │ ├── Default@2x.png
│ │ ├── Icon-60@2x.png
│ │ ├── Icon-60@3x.png
│ │ ├── Icon-76.png
│ │ ├── Icon-76@2x.png
│ │ ├── Icon-Small-40.png
│ │ ├── Icon-Small-40@2x.png
│ │ ├── Icon-Small-40@3x.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon-Small@3x.png
│ │ └── LaunchScreen.storyboard
│ ├── SampleApp.iOS.csproj
│ ├── iTunesArtwork
│ ├── iTunesArtwork@2x
│ └── packages.config
│ ├── SampleApp
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Pages
│ │ ├── RoundedBoxViewPage.xaml
│ │ └── RoundedBoxViewPage.xaml.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SampleApp.csproj
│ └── packages.config
│ └── UITests
│ ├── AppInitializer.cs
│ ├── Tests.cs
│ ├── UITests.csproj
│ └── packages.config
├── SVG
├── README.md
├── SVG.sln
├── SVG
│ ├── SVG.Forms.Plugin.Abstractions
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SVG.Forms.Plugin.Abstractions.csproj
│ │ ├── SvgImage.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── packages.config
│ ├── SVG.Forms.Plugin.Android
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ └── AboutResources.txt
│ │ ├── SVG.Forms.Plugin.Android.csproj
│ │ ├── Services
│ │ │ ├── BitmapService.cs
│ │ │ └── SvgService.cs
│ │ ├── SvgImageRenderer.cs
│ │ ├── ext_bin
│ │ │ ├── NGraphics.Android.Custom.dll
│ │ │ └── NGraphics.Custom.dll
│ │ ├── obj
│ │ │ └── Debug
│ │ │ │ ├── R.cs.flag
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ └── __library_projects__
│ │ │ │ ├── FormsViewGroup.stamp
│ │ │ │ ├── FormsViewGroup
│ │ │ │ └── library_project_imports
│ │ │ │ │ └── formsviewgroup.jar
│ │ │ │ ├── SVG.Forms.Plugin.Abstractions.stamp
│ │ │ │ ├── Xamarin.Android.Support.v4.stamp
│ │ │ │ ├── Xamarin.Forms.Core.stamp
│ │ │ │ ├── Xamarin.Forms.Platform.Android.stamp
│ │ │ │ └── Xamarin.Forms.Xaml.stamp
│ │ └── packages.config
│ ├── SVG.Forms.Plugin.WindowsPhone
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── README_FIRST.txt
│ │ ├── SVG.Forms.Plugin.WindowsPhone.csproj
│ │ ├── SvgImageRenderer.cs
│ │ ├── Toolkit.Content
│ │ │ ├── ApplicationBar.Add.png
│ │ │ ├── ApplicationBar.Cancel.png
│ │ │ ├── ApplicationBar.Check.png
│ │ │ ├── ApplicationBar.Delete.png
│ │ │ └── ApplicationBar.Select.png
│ │ ├── obj
│ │ │ └── Debug
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── packages.config
│ ├── SVG.Forms.Plugin.iOS
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SVG.Forms.Plugin.iOS.csproj
│ │ ├── SvgImageRenderer.cs
│ │ ├── ext_bin
│ │ │ ├── NGraphics.Custom.dll
│ │ │ └── NGraphics.iOS.Custom.dll
│ │ └── packages.config
│ └── SVG.Forms.Plugin.nuspec
└── SampleApp
│ ├── SampleApp.Droid
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── MainActivity.cs
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-xhdpi
│ │ │ └── icon.png
│ │ ├── drawable-xxhdpi
│ │ │ └── icon.png
│ │ └── drawable
│ │ │ └── icon.png
│ ├── SampleApp.Droid.csproj
│ └── packages.config
│ ├── SampleApp.WinPhone
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Assets
│ │ ├── AlignmentGrid.png
│ │ ├── ApplicationIcon.png
│ │ └── Tiles
│ │ │ ├── FlipCycleTileLarge.png
│ │ │ ├── FlipCycleTileMedium.png
│ │ │ ├── FlipCycleTileSmall.png
│ │ │ ├── IconicTileMediumLarge.png
│ │ │ └── IconicTileSmall.png
│ ├── LocalizedStrings.cs
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Properties
│ │ ├── AppManifest.xml
│ │ ├── AssemblyInfo.cs
│ │ └── WMAppManifest.xml
│ ├── README_FIRST.txt
│ ├── Resources
│ │ ├── AppResources.Designer.cs
│ │ └── AppResources.resx
│ ├── SampleApp.WinPhone.csproj
│ ├── SplashScreenImage.jpg
│ ├── Toolkit.Content
│ │ ├── ApplicationBar.Add.png
│ │ ├── ApplicationBar.Cancel.png
│ │ ├── ApplicationBar.Check.png
│ │ ├── ApplicationBar.Delete.png
│ │ └── ApplicationBar.Select.png
│ └── packages.config
│ ├── SampleApp.iOS
│ ├── AppDelegate.cs
│ ├── Entitlements.plist
│ ├── Info.plist
│ ├── Main.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── Default-568h@2x.png
│ │ ├── Default-Portrait.png
│ │ ├── Default-Portrait@2x.png
│ │ ├── Default.png
│ │ ├── Default@2x.png
│ │ ├── Icon-60@2x.png
│ │ ├── Icon-60@3x.png
│ │ ├── Icon-76.png
│ │ ├── Icon-76@2x.png
│ │ ├── Icon-Small-40.png
│ │ ├── Icon-Small-40@2x.png
│ │ ├── Icon-Small-40@3x.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon-Small@3x.png
│ │ └── LaunchScreen.storyboard
│ ├── SampleApp.iOS.csproj
│ ├── iTunesArtwork
│ ├── iTunesArtwork@2x
│ └── packages.config
│ └── SampleApp
│ ├── App.cs
│ ├── Images
│ ├── CoolMask.svg
│ ├── CoolMask.xaml
│ ├── Elvis.svg
│ ├── Elvis.xaml
│ ├── ErulisseuiinSpaceshipPack.svg
│ ├── NavigateIcon.xaml
│ ├── ios_app_buttons.svg
│ ├── tiger.svg
│ └── tiger.xaml
│ ├── Models
│ └── ListviewSampleModel.cs
│ ├── Pages
│ ├── Listview.xaml
│ ├── Listview.xaml.cs
│ ├── ViaCode.cs
│ ├── ViaResources.xaml
│ ├── ViaResources.xaml.cs
│ ├── ViaXaml.xaml
│ └── ViaXaml.xaml.cs
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── SampleApp.csproj
│ ├── ViewModel
│ ├── ListviewViewModel.cs
│ └── ViaXamlViewModel.cs
│ └── packages.config
├── SampleApp
├── Images
│ ├── ExtendedCellsNugetIcon.png
│ ├── ExtendedMapIcon.png
│ ├── KeyboardOverlapNugetIcon.png
│ ├── RoundedBoxViewNugetIcon.png
│ ├── Screenshots
│ │ ├── Droid_Map_1.png
│ │ ├── Droid_Map_2.png
│ │ ├── Droid_RoundedBoxView.png
│ │ ├── Droid_TwoColumnCell_Listview.png
│ │ ├── Droid_TwoColumnCell_TableView1.png
│ │ ├── Droid_TwoColumnCell_TableView2.png
│ │ ├── ExtendedTextCell_All.PNG
│ │ ├── ExtendedTextCell_Droid.png
│ │ ├── ExtendedTextCell_WP.png
│ │ ├── ExtendedTextCell_iOS.PNG
│ │ ├── KeyboardOverlap1.png
│ │ ├── KeyboardOverlap2.png
│ │ ├── SVG_ALL.PNG
│ │ ├── WP_RoundedBoxView.png
│ │ ├── iOS_Map_1.png
│ │ ├── iOS_Map_2.png
│ │ └── iOS_RoundedBoxView.PNG
│ ├── StyleIdGeneratorNugetIcon.png
│ ├── SvgNugetIcon.png
│ └── WhySVG.PNG
└── PluginSampleApp
│ ├── PluginSampleApp.sln
│ ├── PluginSampleApp.sln.DotSettings
│ ├── PluginSampleApp
│ ├── PluginSampleApp.Droid
│ │ ├── Assets
│ │ │ └── AboutAssets.txt
│ │ ├── MainActivity.cs
│ │ ├── PluginSampleApp.Droid.csproj
│ │ ├── Properties
│ │ │ ├── AndroidManifest.xml
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── AboutResources.txt
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-xxhdpi
│ │ │ │ └── icon.png
│ │ │ └── drawable
│ │ │ │ └── icon.png
│ │ └── packages.config
│ ├── PluginSampleApp.WinPhone
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── Assets
│ │ │ ├── AlignmentGrid.png
│ │ │ ├── ApplicationIcon.png
│ │ │ └── Tiles
│ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ ├── IconicTileMediumLarge.png
│ │ │ │ └── IconicTileSmall.png
│ │ ├── LocalizedStrings.cs
│ │ ├── MainPage.xaml
│ │ ├── MainPage.xaml.cs
│ │ ├── PluginSampleApp.WinPhone.csproj
│ │ ├── Properties
│ │ │ ├── AppManifest.xml
│ │ │ ├── AssemblyInfo.cs
│ │ │ └── WMAppManifest.xml
│ │ ├── README_FIRST.txt
│ │ ├── Resources
│ │ │ ├── AppResources.Designer.cs
│ │ │ └── AppResources.resx
│ │ ├── Toolkit.Content
│ │ │ ├── ApplicationBar.Add.png
│ │ │ ├── ApplicationBar.Cancel.png
│ │ │ ├── ApplicationBar.Check.png
│ │ │ ├── ApplicationBar.Delete.png
│ │ │ └── ApplicationBar.Select.png
│ │ └── packages.config
│ ├── PluginSampleApp.iOS
│ │ ├── AppDelegate.cs
│ │ ├── Entitlements.plist
│ │ ├── Info.plist
│ │ ├── Main.cs
│ │ ├── PluginSampleApp.iOS.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Default-Portrait.png
│ │ │ ├── Default-Portrait@2x.png
│ │ │ ├── Default.png
│ │ │ ├── Default@2x.png
│ │ │ ├── Icon-60@2x.png
│ │ │ ├── Icon-60@3x.png
│ │ │ ├── Icon-76.png
│ │ │ ├── Icon-76@2x.png
│ │ │ ├── Icon-Small-40.png
│ │ │ ├── Icon-Small-40@2x.png
│ │ │ ├── Icon-Small-40@3x.png
│ │ │ ├── Icon-Small.png
│ │ │ ├── Icon-Small@2x.png
│ │ │ ├── Icon-Small@3x.png
│ │ │ └── LaunchScreen.storyboard
│ │ ├── iTunesArtwork
│ │ ├── iTunesArtwork@2x
│ │ └── packages.config
│ └── PluginSampleApp
│ │ ├── App.cs
│ │ ├── Images
│ │ ├── CoolGuy.svg
│ │ ├── CoolGuy.xaml
│ │ ├── Elvis.svg
│ │ ├── Elvis.xaml
│ │ ├── tiger.svg
│ │ └── tiger.xaml
│ │ ├── Models
│ │ ├── Colors.cs
│ │ └── Person.cs
│ │ ├── PageTitle.cs
│ │ ├── Pages
│ │ ├── ExtendedMapPage.cs
│ │ ├── ExtendedTextCellListview.xaml
│ │ ├── ExtendedTextCellListview.xaml.cs
│ │ ├── ExtendedTextCellTableView.xaml
│ │ ├── ExtendedTextCellTableView.xaml.cs
│ │ ├── RoundedBoxViewPage.xaml
│ │ ├── RoundedBoxViewPage.xaml.cs
│ │ └── SVGPage.cs
│ │ ├── PluginSampleApp.csproj
│ │ ├── Properties
│ │ ├── Annotations.cs
│ │ └── AssemblyInfo.cs
│ │ ├── ViewModels
│ │ ├── ExtendedViewModel.cs
│ │ └── ListviewViewModel.cs
│ │ └── packages.config
│ └── Tests
│ └── UiTests
│ ├── AndroidTest.cs
│ ├── CrossPlatformTests.cs
│ ├── ExtensionMethods
│ └── IAppExtensions.cs
│ ├── Generator
│ ├── StyleIdGenerator.t4
│ ├── StyleIdGenerator_Config.cs
│ └── StyleIdGenerator_Config.tt
│ ├── UiTests.csproj
│ ├── iOSTest.cs
│ └── packages.config
└── StyleIdGenerator
├── README.md
├── SampleApp
├── SampleApp.Droid
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── MainActivity.cs
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-xhdpi
│ │ │ └── icon.png
│ │ ├── drawable-xxhdpi
│ │ │ └── icon.png
│ │ └── drawable
│ │ │ └── icon.png
│ ├── SampleApp.Droid.csproj
│ └── packages.config
├── SampleApp.WinPhone
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Assets
│ │ ├── AlignmentGrid.png
│ │ ├── ApplicationIcon.png
│ │ └── Tiles
│ │ │ ├── FlipCycleTileLarge.png
│ │ │ ├── FlipCycleTileMedium.png
│ │ │ ├── FlipCycleTileSmall.png
│ │ │ ├── IconicTileMediumLarge.png
│ │ │ └── IconicTileSmall.png
│ ├── LocalizedStrings.cs
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Properties
│ │ ├── AppManifest.xml
│ │ ├── AssemblyInfo.cs
│ │ └── WMAppManifest.xml
│ ├── README_FIRST.txt
│ ├── Resources
│ │ ├── AppResources.Designer.cs
│ │ └── AppResources.resx
│ ├── SampleApp.WinPhone.csproj
│ ├── SplashScreenImage.jpg
│ ├── Toolkit.Content
│ │ ├── ApplicationBar.Add.png
│ │ ├── ApplicationBar.Cancel.png
│ │ ├── ApplicationBar.Check.png
│ │ ├── ApplicationBar.Delete.png
│ │ └── ApplicationBar.Select.png
│ └── packages.config
├── SampleApp.iOS
│ ├── AppDelegate.cs
│ ├── Entitlements.plist
│ ├── Info.plist
│ ├── Main.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── Default-568h@2x.png
│ │ ├── Default-Portrait.png
│ │ ├── Default-Portrait@2x.png
│ │ ├── Default.png
│ │ ├── Default@2x.png
│ │ ├── Icon-60@2x.png
│ │ ├── Icon-60@3x.png
│ │ ├── Icon-76.png
│ │ ├── Icon-76@2x.png
│ │ ├── Icon-Small-40.png
│ │ ├── Icon-Small-40@2x.png
│ │ ├── Icon-Small-40@3x.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon-Small@3x.png
│ │ └── LaunchScreen.storyboard
│ ├── SampleApp.iOS.csproj
│ ├── iTunesArtwork
│ ├── iTunesArtwork@2x
│ └── packages.config
└── SampleApp
│ ├── App.cs
│ ├── Page1.xaml
│ ├── Page1.xaml.cs
│ ├── Page2.xaml
│ ├── Page2.xaml.cs
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── SampleApp.csproj
│ └── packages.config
├── StyleIdGenerator.sln
└── StyleIdGenerator
├── StyleIdGenerator.Forms.Plugin.nuspec
├── StyleIdGenerator
├── Generator
│ ├── StyleIdGenerator.t4
│ ├── StyleIdGenerator_Config.cs
│ └── StyleIdGenerator_Config.tt
├── Properties
│ └── AssemblyInfo.cs
└── StyleIdGenerator.csproj
└── UITests
├── Bootstrappers
├── AndroidTest.cs
└── iOSTest.cs
├── CrossPlatformTests.cs
├── ExtensionsMethods
└── IAppExtensions.cs
├── Page1Tests.cs
├── Page2Tests.cs
├── Properties
└── AssemblyInfo.cs
├── UiTests.csproj
└── packages.config
/.gitignore:
--------------------------------------------------------------------------------
1 | bin/
2 | Bin/
3 | obj/
4 | Components/
5 | packages/
6 | SVG/SVG.sln.ide/
7 | Resource.Designer.cs
8 | .DS_Store
9 | .userprefs
10 | .suo
11 | *.user
12 | *.bak
--------------------------------------------------------------------------------
/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.Abstractions/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.Android/Resources/Resource.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.Android/Resources/Resource.Designer.cs
--------------------------------------------------------------------------------
/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.Android/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.WindowsPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/ExtendedCells/ExtendedCells/ExtendedCells.Forms.Plugin.iOSUnified/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.Droid/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.Droid/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.Droid/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.Droid/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.Droid/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/LocalizedStrings.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.WinPhone.Resources;
2 |
3 | namespace SampleApp.WinPhone
4 | {
5 | ///
6 | /// Provides access to string resources.
7 | ///
8 | public class LocalizedStrings
9 | {
10 | private static AppResources _localizedResources = new AppResources();
11 |
12 | public AppResources LocalizedResources { get { return _localizedResources; } }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/MainPage.cs:
--------------------------------------------------------------------------------
1 | using ExtendedCells.Forms.Plugin.WindowsPhone;
2 | using Microsoft.Phone.Controls;
3 | using Xamarin.Forms;
4 | using Xamarin.Forms.Platform.WinPhone;
5 |
6 | namespace SampleApp.WinPhone
7 | {
8 | public partial class MainPage : FormsApplicationPage
9 | {
10 | public MainPage()
11 | {
12 | InitializeComponent();
13 | SupportedOrientations = SupportedPageOrientation.PortraitOrLandscape;
14 |
15 | Forms.Init();
16 | ExtendedTextCellRenderer.Init();
17 |
18 | LoadApplication(new SampleApp.App());
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Properties/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/SplashScreenImage.jpg
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.WinPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Application.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace SampleApp.iOS
9 | {
10 | public class Application
11 | {
12 | // This is the main entry point of the application.
13 | static void Main(string[] args)
14 | {
15 | // if you want to use a different Application Delegate class from "AppDelegate"
16 | // you can specify it here.
17 | UIApplication.Main(args, null, "AppDelegate");
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedCells/SampleApp/SampleApp.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp/Models/Colors.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace SampleApp.Models
4 | {
5 | public static class Colors
6 | {
7 | public static Color DefaultColor {
8 | get {
9 | var color = Color.White;
10 |
11 | Device.OnPlatform (() => {
12 | color = Color.Black;
13 | });
14 |
15 | return color;
16 | }
17 | }
18 |
19 | public static Color BlackOrWhite {
20 | get {
21 | var color = Color.Black;
22 |
23 | Device.OnPlatform (() => {
24 | color = Color.White;
25 | });
26 |
27 | return color;
28 | }
29 | }
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp/Models/MenuItem.cs:
--------------------------------------------------------------------------------
1 | namespace SampleApp.Models
2 | {
3 | public struct MenuItem
4 | {
5 | public const string Listview = "Listview";
6 | public const string TableLayout = "TableLayout";
7 | public const string Styles = "Styles";
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp/Models/Person.cs:
--------------------------------------------------------------------------------
1 | namespace SampleApp.Models
2 | {
3 | public class Person
4 | {
5 | public string FirstName { get; set; }
6 | public string LastName { get; set; }
7 | public string PhoneNumber { get; set; }
8 | public string Address { get; set; }
9 | }
10 | }
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp/Pages/ExtendedTextCellListview.xaml.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.ViewModel;
2 |
3 | namespace SampleApp.Pages
4 | {
5 | public partial class ExtendedTextCellListview
6 | {
7 | public ExtendedTextCellListview()
8 | {
9 | InitializeComponent();
10 | BindingContext = new ListviewViewModel();
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp/Pages/ExtendedTextCellTableView.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace SampleApp.Pages
4 | {
5 | public partial class ExtendedTextCellTableView : ContentPage
6 | {
7 | public ExtendedTextCellTableView()
8 | {
9 | InitializeComponent();
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp/Pages/StackLayoutCell.xaml.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.ViewModel;
2 |
3 | namespace SampleApp.Pages
4 | {
5 | public partial class StackLayoutCell
6 | {
7 | public StackLayoutCell()
8 | {
9 | InitializeComponent();
10 | BindingContext = new ListviewViewModel();
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp/Pages/Styles.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Xamarin.Forms;
8 |
9 | namespace SampleApp.Pages
10 | {
11 | public partial class Styles : ContentPage
12 | {
13 | public Styles()
14 | {
15 | InitializeComponent();
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/ExtendedCells/SampleApp/SampleApp/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.Abstractions/LoadMoreQuery.cs:
--------------------------------------------------------------------------------
1 | namespace ExtendedListview.Forms.Plugin.Abstractions
2 | {
3 | public class LoadMoreQuery
4 | {
5 | public int PageNumber { get; set; }
6 | public int PageSize { get; set; }
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.Abstractions/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.Android/ExtendedListviewImplementation.cs:
--------------------------------------------------------------------------------
1 | using ExtendedListview.Forms.Plugin.Droid;
2 | using Xamarin.Forms;
3 |
4 | [assembly: ExportRenderer(typeof(ExtendedListview.Forms.Plugin.Abstractions.ExtendedListview), typeof(ExtendedListviewRenderer))]
5 |
6 | namespace ExtendedListview.Forms.Plugin.Droid
7 | {
8 | ///
9 | /// ExtendedListview Renderer
10 | ///
11 | public class ExtendedListviewRenderer //: TRender (replace with renderer type
12 | {
13 | ///
14 | /// Used for registration with dependency service
15 | ///
16 | public static void Init()
17 | {
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.Android/Resources/Resource.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.Android/Resources/Resource.Designer.cs
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.WindowsPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.iOS/ExtendedListviewImplementation.cs:
--------------------------------------------------------------------------------
1 | using ExtendedListview.Forms.Plugin.Abstractions;
2 | using ExtendedListview.Forms.Plugin.iOS;
3 | using Xamarin.Forms;
4 |
5 | [assembly: ExportRenderer(typeof(ExtendedListview.Forms.Plugin.Abstractions.ExtendedListview), typeof(ExtendedListviewRenderer))]
6 |
7 | namespace ExtendedListview.Forms.Plugin.iOS
8 | {
9 | ///
10 | /// ExtendedListview Renderer
11 | ///
12 | public class ExtendedListviewRenderer //: TRender (replace with renderer type
13 | {
14 | ///
15 | /// Used for registration with dependency service
16 | ///
17 | public static void Init()
18 | {
19 | }
20 | }
21 | }
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.iOSUnified/ExtendedListviewImplementation.cs:
--------------------------------------------------------------------------------
1 | using ExtendedListview.Forms.Plugin.iOSUnified;
2 | using Xamarin.Forms;
3 |
4 | [assembly: ExportRenderer(typeof (ExtendedListview.Forms.Plugin.Abstractions.ExtendedListview), typeof (ExtendedListviewRenderer))]
5 |
6 | namespace ExtendedListview.Forms.Plugin.iOSUnified
7 | {
8 | ///
9 | /// ExtendedListview Renderer
10 | ///
11 | public class ExtendedListviewRenderer //: TRender (replace with renderer type
12 | {
13 | ///
14 | /// Used for registration with dependency service
15 | ///
16 | public static void Init()
17 | {
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/ExtendedListview/ExtendedListview/ExtendedListview.Forms.Plugin.iOSUnified/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.Droid/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.Droid/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.Droid/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.Droid/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.Droid/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/ApplicationIcon.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/IconicTileSmall.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/LocalizedStrings.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.WinPhone.Resources;
2 |
3 | namespace SampleApp.WinPhone
4 | {
5 | ///
6 | /// Provides access to string resources.
7 | ///
8 | public class LocalizedStrings
9 | {
10 | private static AppResources _localizedResources = new AppResources();
11 |
12 | public AppResources LocalizedResources { get { return _localizedResources; } }
13 | }
14 | }
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Properties/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.WinPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace SampleApp.iOS
9 | {
10 | public class Application
11 | {
12 | // This is the main entry point of the application.
13 | static void Main(string[] args)
14 | {
15 | // if you want to use a different Application Delegate class from "AppDelegate"
16 | // you can specify it here.
17 | UIApplication.Main(args, null, "AppDelegate");
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp/App.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.Pages;
2 | using Xamarin.Forms;
3 |
4 | namespace SampleApp
5 | {
6 | public class App : Application
7 | {
8 | public App()
9 | {
10 | // The root page of your application
11 | MainPage = new IncrementalListview();
12 | }
13 |
14 | protected override void OnStart()
15 | {
16 | // Handle when your app starts
17 | }
18 |
19 | protected override void OnSleep()
20 | {
21 | // Handle when your app sleeps
22 | }
23 |
24 | protected override void OnResume()
25 | {
26 | // Handle when your app resumes
27 | }
28 | }
29 | }
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp/Models/Person.cs:
--------------------------------------------------------------------------------
1 | namespace SampleApp.Models
2 | {
3 | public class Person
4 | {
5 | public string FirstName { get; set; }
6 | public string LastName { get; set; }
7 | public string PhoneNumber { get; set; }
8 | public string Address { get; set; }
9 | }
10 | }
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp/Pages/IncrementalListview.xaml.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.ViewModels;
2 | using Xamarin.Forms;
3 |
4 | namespace SampleApp.Pages
5 | {
6 | public partial class IncrementalListview : ContentPage
7 | {
8 | public IncrementalListview()
9 | {
10 | InitializeComponent();
11 | BindingContext = new ListviewViewModel();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/ExtendedListview/SampleApp/SampleApp/SampleApp/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.Abstractions/ExtensionMethods/DateTimeExtensions.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace ExtendedMap.Forms.Plugin.Abstractions.ExtensionMethods
4 | {
5 | public static class DateTimeExtensions
6 | {
7 | public static DateTime FromWeekDay(this DateTime date, DayOfWeek dayOfWeek)
8 | {
9 | var today = new DateTime();
10 |
11 | for (int day = 1; day <= 7; day++)
12 | {
13 | if (today.DayOfWeek == dayOfWeek)
14 | return today;
15 |
16 | today = today.AddDays(1);
17 | }
18 |
19 | return today;
20 | }
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.Abstractions/Models/Colors.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace ExtendedMap.Forms.Plugin.Abstractions.Models
4 | {
5 | public struct Colors
6 | {
7 | public static Color LightGray = Color.FromHex ("#FFE4E4E2");
8 | public static Color Gray = Color.FromHex ("#999");
9 | public static Color LightBlue = Color.FromHex ("#3498DB");
10 | public static Color DarkRed = Color.FromHex ("#cd0814");
11 |
12 | public static Color DarkBlue { get { return Color.FromHex ("#FF4285F4"); } }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.Abstractions/Models/ExtraDetailModel.cs:
--------------------------------------------------------------------------------
1 | namespace ExtendedMap.Forms.Plugin.Abstractions.Models
2 | {
3 | public class ExtraDetailModel
4 | {
5 | public string Key
6 | {
7 | get;
8 | set;
9 | }
10 |
11 | public string Value
12 | {
13 | get;
14 | set;
15 | }
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.Abstractions/Models/NavigationModel.cs:
--------------------------------------------------------------------------------
1 | namespace ExtendedMap.Forms.Plugin.Abstractions.Models
2 | {
3 | public class NavigationModel
4 | {
5 | public double Latitude { get; set; }
6 | public double Longitude { get; set; }
7 | public string DestinationName { get; set; }
8 | public string DestinationAddress { get; set; }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.Abstractions/Models/ScheduleEntry.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace ExtendedMap.Forms.Plugin.Abstractions.Models
4 | {
5 | public class ScheduleEntry
6 | {
7 | public string Day {
8 | get;
9 | set;
10 | }
11 |
12 | ///
13 | /// The start and end time
14 | ///
15 | /// The times.
16 | public string HoursOfOperation { get; set; }
17 | }
18 |
19 | public class ScheduleEntryModel
20 | {
21 | public DateTime StartTime
22 | {
23 | get;
24 | set;
25 | }
26 |
27 | public DateTime EndTime
28 | {
29 | get;
30 | set;
31 | }
32 | }
33 | }
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.Abstractions/Models/Url.cs:
--------------------------------------------------------------------------------
1 | namespace ExtendedMap.Forms.Plugin.Abstractions.Models
2 | {
3 | public class Url
4 | {
5 | public string Key {
6 | get;
7 | set;
8 | }
9 |
10 | public string Value {
11 | get;
12 | set;
13 | }
14 | }
15 | }
16 |
17 |
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.Abstractions/Services/IPhoneService.cs:
--------------------------------------------------------------------------------
1 | using ExtendedMap.Forms.Plugin.Abstractions.Models;
2 |
3 | namespace ExtendedMap.Forms.Plugin.Abstractions.Services
4 | {
5 | public interface IPhoneService
6 | {
7 | void OpenBrowser (string url);
8 |
9 | ///
10 | /// Opens native dialog to dial the specified number.
11 | ///
12 | /// Number to dial.
13 | ///
14 | void DialNumber (string number, string name);
15 |
16 | void ShareText (string text);
17 |
18 | void LaunchNavigationAsync (NavigationModel navigationModel);
19 | }
20 | }
21 |
22 |
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.Abstractions/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.Android/Resources/Resource.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.Android/Resources/Resource.Designer.cs
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.WindowsPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.iOS/defaultPin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.iOS/defaultPin.png
--------------------------------------------------------------------------------
/ExtendedMap/ExtendedMap/ExtendedMap.Forms.Plugin.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/ExtendedMap/README.md:
--------------------------------------------------------------------------------
1 | # Setup
2 |
3 | Coming Soon
4 |
5 | # Usage
6 |
7 | Coming soon
8 |
9 | # Screenshots
10 |
11 | 
12 | 
13 | 
14 | 
15 |
16 | # License
17 | Licensed under main repo license
18 |
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.Droid/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable/Chicken.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable/Chicken.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable/FoodBowl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable/FoodBowl.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.Droid/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/LocalizedStrings.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.WinPhone.Resources;
2 |
3 | namespace SampleApp.WinPhone
4 | {
5 | ///
6 | /// Provides access to string resources.
7 | ///
8 | public class LocalizedStrings
9 | {
10 | private static AppResources _localizedResources = new AppResources();
11 |
12 | public AppResources LocalizedResources { get { return _localizedResources; } }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Properties/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/SplashScreenImage.jpg
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.WinPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace SampleApp.iOS
9 | {
10 | public class Application
11 | {
12 | // This is the main entry point of the application.
13 | static void Main(string[] args)
14 | {
15 | // if you want to use a different Application Delegate class from "AppDelegate"
16 | // you can specify it here.
17 | UIApplication.Main(args, null, "AppDelegate");
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Chicken.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Chicken.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/FoodBowl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/FoodBowl.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/ExtendedMap/SampleApp/SampleApp.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp/Helpers/Icons.cs:
--------------------------------------------------------------------------------
1 | namespace SampleApp.Helpers
2 | {
3 | ///
4 | /// Put the icon images in the Assets directory for Android
5 | ///
6 | public static class Icons
7 | {
8 | public static string FoodBowl { get { return "FoodBowl"; } }
9 |
10 | public static string Chicken { get { return "Chicken"; } }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/ExtendedMap/SampleApp/SampleApp/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/KeyboardOverlap/KeyboardOverlap/KeyboardOverlap.Forms.Plugin.iOSUnified/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/.DS_Store
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Application.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace SampleApp.iOS
9 | {
10 | public class Application
11 | {
12 | // This is the main entry point of the application.
13 | static void Main(string[] args)
14 | {
15 | // if you want to use a different Application Delegate class from "AppDelegate"
16 | // you can specify it here.
17 | UIApplication.Main(args, null, "AppDelegate");
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/KeyboardOverlap/SampleApp/SampleApp.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/App.xaml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace SampleApp
4 | {
5 | public partial class App : Application
6 | {
7 | public App()
8 | {
9 | InitializeComponent();
10 |
11 | MainPage = new NavigationPage (new SampleApp.MainPage ());
12 | }
13 |
14 |
15 |
16 | protected override void OnStart()
17 | {
18 | // Handle when your app starts
19 | }
20 |
21 | protected override void OnSleep()
22 | {
23 | // Handle when your app sleeps
24 | }
25 |
26 | protected override void OnResume()
27 | {
28 | // Handle when your app resumes
29 | }
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/Models/PageTitle.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace SampleApp
4 | {
5 | public static class PageTitle
6 | {
7 | public const string EntriesOnlyPage = "Entries Only";
8 | public const string TabbedPage = "Tabbed";
9 | public const string WithOtherContent = "With Other Content";
10 | public const string WithScrollView = "With Scroll View";
11 | public const string SearchBar = "Search Bar";
12 | public const string Editor = "Editor";
13 | }
14 | }
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/Pages/EntriesOnly.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 |
4 | using Xamarin.Forms;
5 |
6 | namespace SampleApp
7 | {
8 | public partial class EntriesOnly : ContentPage
9 | {
10 | public EntriesOnly ()
11 | {
12 | InitializeComponent ();
13 | }
14 | }
15 | }
16 |
17 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/Pages/MainPage.xaml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/Pages/MultiLineText.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 |
4 | using Xamarin.Forms;
5 |
6 | namespace SampleApp.Pages
7 | {
8 | public partial class MultiLineText : ContentPage
9 | {
10 | public MultiLineText ()
11 | {
12 | InitializeComponent ();
13 | }
14 | }
15 | }
16 |
17 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/Pages/SearchBarPage.xaml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/Pages/SearchBarPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 |
4 | using Xamarin.Forms;
5 |
6 | namespace SampleApp.Pages
7 | {
8 | public partial class SearchBarPage : ContentPage
9 | {
10 | public SearchBarPage ()
11 | {
12 | InitializeComponent ();
13 | }
14 | }
15 | }
16 |
17 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/Pages/TabsPage.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | using Xamarin.Forms;
4 |
5 | namespace SampleApp
6 | {
7 | public class TabsPage : TabbedPage
8 | {
9 | public TabsPage ()
10 | {
11 | Title = "Tabs Page";
12 | Children.Add (new EntriesOnly ());
13 | Children.Add (new WithOtherContent ());
14 | Children.Add (new WithScrollView ());
15 | }
16 | }
17 | }
18 |
19 |
20 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/Pages/WithOtherContent.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 |
4 | using Xamarin.Forms;
5 |
6 | namespace SampleApp
7 | {
8 | public partial class WithOtherContent : ContentPage
9 | {
10 | public WithOtherContent ()
11 | {
12 | InitializeComponent ();
13 | }
14 | }
15 | }
16 |
17 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/Pages/WithScrollView.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 |
4 | using Xamarin.Forms;
5 |
6 | namespace SampleApp
7 | {
8 | public partial class WithScrollView : ContentPage
9 | {
10 | public WithScrollView ()
11 | {
12 | InitializeComponent ();
13 | }
14 | }
15 | }
16 |
17 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/ViewModel/MainPageViewModel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using Xamarin.Forms;
4 |
5 | namespace SampleApp
6 | {
7 | public class MainPageViewModel
8 | {
9 | private List _pages;
10 |
11 | public List Pages {
12 | get {
13 | if (_pages == null) {
14 | _pages = new List { PageTitle.EntriesOnlyPage,
15 | PageTitle.TabbedPage,
16 | PageTitle.WithOtherContent,
17 | PageTitle.WithScrollView,
18 | PageTitle.SearchBar,
19 | PageTitle.Editor
20 | };
21 |
22 | }
23 |
24 | return _pages;
25 | }
26 | set { _pages = value; }
27 | }
28 | }
29 | }
30 |
31 |
--------------------------------------------------------------------------------
/KeyboardOverlap/SampleApp/SampleApp/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.Abstractions/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.WindowsPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/RoundedBoxView/RoundedBoxView/RoundedBoxView.Forms.Plugin.iOSUnified/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.Droid/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.Droid/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.Droid/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.Droid/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.Droid/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/LocalizedStrings.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.WinPhone.Resources;
2 |
3 | namespace SampleApp.WinPhone
4 | {
5 | ///
6 | /// Provides access to string resources.
7 | ///
8 | public class LocalizedStrings
9 | {
10 | private static AppResources _localizedResources = new AppResources();
11 |
12 | public AppResources LocalizedResources { get { return _localizedResources; } }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/MainPage.cs:
--------------------------------------------------------------------------------
1 | using Microsoft.Phone.Controls;
2 | using RoundedBoxView.Forms.Plugin.WindowsPhone;
3 | using Xamarin.Forms;
4 | using Xamarin.Forms.Platform.WinPhone;
5 |
6 | namespace SampleApp.WinPhone
7 | {
8 | public partial class MainPage : FormsApplicationPage
9 | {
10 | public MainPage()
11 | {
12 | InitializeComponent();
13 | SupportedOrientations = SupportedPageOrientation.PortraitOrLandscape;
14 |
15 | Forms.Init();
16 | RoundedBoxViewRenderer.Init();
17 |
18 | LoadApplication(new SampleApp.App());
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Properties/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/RoundedRectangleNative.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Net;
5 | using System.Windows;
6 | using System.Windows.Controls;
7 | using System.Windows.Navigation;
8 | using Microsoft.Phone.Controls;
9 | using Microsoft.Phone.Shell;
10 |
11 | namespace SampleApp.WinPhone
12 | {
13 | public partial class RoundedRectangleNative : UserControl
14 | {
15 | public RoundedRectangleNative()
16 | {
17 | InitializeComponent();
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/SplashScreenImage.jpg
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.WinPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Application.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace SampleApp.iOS
9 | {
10 | public class Application
11 | {
12 | // This is the main entry point of the application.
13 | static void Main(string[] args)
14 | {
15 | // if you want to use a different Application Delegate class from "AppDelegate"
16 | // you can specify it here.
17 | UIApplication.Main(args, null, "AppDelegate");
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/RoundedBoxView/SampleApp/SampleApp.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp/App.xaml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 | using SampleApp.Pages;
3 | using Xamarin.Forms;
4 |
5 | namespace SampleApp
6 | {
7 | public partial class App : Application
8 | {
9 | public App()
10 | {
11 | InitializeComponent();
12 |
13 | MainPage = new RoundedBoxViewPage();
14 | }
15 |
16 |
17 |
18 | protected override void OnStart()
19 | {
20 | // Handle when your app starts
21 | }
22 |
23 | protected override void OnSleep()
24 | {
25 | // Handle when your app sleeps
26 | }
27 |
28 | protected override void OnResume()
29 | {
30 | // Handle when your app resumes
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp/Pages/RoundedBoxViewPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Xamarin.Forms;
8 |
9 | namespace SampleApp.Pages
10 | {
11 | public partial class RoundedBoxViewPage : ContentPage
12 | {
13 | public RoundedBoxViewPage()
14 | {
15 | InitializeComponent();
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/SampleApp/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/UITests/Tests.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.IO;
3 | using System.Linq;
4 | using NUnit.Framework;
5 | using Xamarin.UITest;
6 | using Xamarin.UITest.Queries;
7 |
8 | namespace UITests
9 | {
10 | [TestFixture (Platform.Android)]
11 | [TestFixture (Platform.iOS)]
12 | public class Tests
13 | {
14 | IApp app;
15 | Platform platform;
16 |
17 | public Tests (Platform platform)
18 | {
19 | this.platform = platform;
20 | }
21 |
22 | [SetUp]
23 | public void BeforeEachTest ()
24 | {
25 | app = AppInitializer.StartApp (platform);
26 | }
27 |
28 | [Test]
29 | public void AppLaunches ()
30 | {
31 | app.Screenshot ("Rounded BoxViews");
32 | }
33 | }
34 | }
35 |
36 |
--------------------------------------------------------------------------------
/RoundedBoxView/SampleApp/UITests/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Abstractions/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Abstractions/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Abstractions/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Abstractions/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Abstractions/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Abstractions/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Abstractions/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/ext_bin/NGraphics.Android.Custom.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/ext_bin/NGraphics.Android.Custom.dll
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/ext_bin/NGraphics.Custom.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/ext_bin/NGraphics.Custom.dll
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/R.cs.flag:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/R.cs.flag
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/FormsViewGroup.stamp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/FormsViewGroup.stamp
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/FormsViewGroup/library_project_imports/formsviewgroup.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/FormsViewGroup/library_project_imports/formsviewgroup.jar
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/SVG.Forms.Plugin.Abstractions.stamp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/SVG.Forms.Plugin.Abstractions.stamp
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.v4.stamp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.v4.stamp
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/Xamarin.Forms.Core.stamp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/Xamarin.Forms.Core.stamp
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/Xamarin.Forms.Platform.Android.stamp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/Xamarin.Forms.Platform.Android.stamp
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/Xamarin.Forms.Xaml.stamp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.Android/obj/Debug/__library_projects__/Xamarin.Forms.Xaml.stamp
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.Android/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.WindowsPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.iOS/ext_bin/NGraphics.Custom.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.iOS/ext_bin/NGraphics.Custom.dll
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.iOS/ext_bin/NGraphics.iOS.Custom.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SVG/SVG.Forms.Plugin.iOS/ext_bin/NGraphics.iOS.Custom.dll
--------------------------------------------------------------------------------
/SVG/SVG/SVG.Forms.Plugin.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.Droid/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.Droid/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.Droid/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.Droid/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.Droid/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/LocalizedStrings.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.WinPhone.Resources;
2 |
3 | namespace SampleApp.WinPhone
4 | {
5 | ///
6 | /// Provides access to string resources.
7 | ///
8 | public class LocalizedStrings
9 | {
10 | private static AppResources _localizedResources = new AppResources();
11 |
12 | public AppResources LocalizedResources { get { return _localizedResources; } }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Properties/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/SplashScreenImage.jpg
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.WinPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace SampleApp.iOS
9 | {
10 | public class Application
11 | {
12 | // This is the main entry point of the application.
13 | static void Main(string[] args)
14 | {
15 | // if you want to use a different Application Delegate class from "AppDelegate"
16 | // you can specify it here.
17 | UIApplication.Main(args, null, "AppDelegate");
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SVG/SampleApp/SampleApp.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp/Models/ListviewSampleModel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Reflection;
5 | using System.Text;
6 | using System.Threading.Tasks;
7 |
8 | namespace SampleApp.Models
9 | {
10 | public class SampleListviewModel
11 | {
12 | private Assembly _svgAssembly;
13 | public Assembly SvgAssembly
14 | {
15 | get {
16 | if(_svgAssembly == null)
17 | {
18 | _svgAssembly = typeof(App).GetTypeInfo().Assembly;
19 | }
20 | return _svgAssembly;
21 | }
22 | }
23 |
24 | public string TigerSvgPath
25 | {
26 | get { return "SampleApp.Images.tiger.svg"; }
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp/Pages/Listview.xaml.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.ViewModel;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Linq;
5 | using System.Text;
6 | using System.Threading.Tasks;
7 | using Xamarin.Forms;
8 |
9 | namespace SampleApp.Pages
10 | {
11 | public partial class Listview : ContentPage
12 | {
13 | public Listview()
14 | {
15 | InitializeComponent();
16 | BindingContext = new ListviewViewModel();
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp/Pages/ViaResources.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 |
4 | using Xamarin.Forms;
5 | using SampleApp.ViewModel;
6 |
7 | namespace SampleApp
8 | {
9 | public partial class ViaResources : ContentPage
10 | {
11 | public ViaResources ()
12 | {
13 | InitializeComponent ();
14 | BindingContext = new ViaXamlViewModel ();
15 | }
16 | }
17 | }
18 |
19 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp/Pages/ViaXaml.xaml.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.ViewModel;
2 |
3 | namespace SampleApp.Pages
4 | {
5 | public partial class ViaXaml
6 | {
7 | public ViaXaml()
8 | {
9 | InitializeComponent();
10 | BindingContext = new ViaXamlViewModel();
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/SVG/SampleApp/SampleApp/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/SampleApp/Images/ExtendedCellsNugetIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/ExtendedCellsNugetIcon.png
--------------------------------------------------------------------------------
/SampleApp/Images/ExtendedMapIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/ExtendedMapIcon.png
--------------------------------------------------------------------------------
/SampleApp/Images/KeyboardOverlapNugetIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/KeyboardOverlapNugetIcon.png
--------------------------------------------------------------------------------
/SampleApp/Images/RoundedBoxViewNugetIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/RoundedBoxViewNugetIcon.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/Droid_Map_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/Droid_Map_1.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/Droid_Map_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/Droid_Map_2.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/Droid_RoundedBoxView.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/Droid_RoundedBoxView.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/Droid_TwoColumnCell_Listview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/Droid_TwoColumnCell_Listview.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/Droid_TwoColumnCell_TableView1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/Droid_TwoColumnCell_TableView1.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/Droid_TwoColumnCell_TableView2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/Droid_TwoColumnCell_TableView2.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/ExtendedTextCell_All.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/ExtendedTextCell_All.PNG
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/ExtendedTextCell_Droid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/ExtendedTextCell_Droid.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/ExtendedTextCell_WP.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/ExtendedTextCell_WP.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/ExtendedTextCell_iOS.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/ExtendedTextCell_iOS.PNG
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/KeyboardOverlap1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/KeyboardOverlap1.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/KeyboardOverlap2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/KeyboardOverlap2.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/SVG_ALL.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/SVG_ALL.PNG
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/WP_RoundedBoxView.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/WP_RoundedBoxView.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/iOS_Map_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/iOS_Map_1.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/iOS_Map_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/iOS_Map_2.png
--------------------------------------------------------------------------------
/SampleApp/Images/Screenshots/iOS_RoundedBoxView.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/Screenshots/iOS_RoundedBoxView.PNG
--------------------------------------------------------------------------------
/SampleApp/Images/StyleIdGeneratorNugetIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/StyleIdGeneratorNugetIcon.png
--------------------------------------------------------------------------------
/SampleApp/Images/SvgNugetIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/SvgNugetIcon.png
--------------------------------------------------------------------------------
/SampleApp/Images/WhySVG.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/Images/WhySVG.PNG
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp.sln.DotSettings:
--------------------------------------------------------------------------------
1 |
2 | True
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.Droid/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.Droid/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.Droid/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.Droid/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.Droid/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.Droid/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.Droid/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.Droid/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.Droid/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/AlignmentGrid.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/ApplicationIcon.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/LocalizedStrings.cs:
--------------------------------------------------------------------------------
1 | using PluginSampleApp.WinPhone.Resources;
2 |
3 | namespace PluginSampleApp.WinPhone
4 | {
5 | ///
6 | /// Provides access to string resources.
7 | ///
8 | public class LocalizedStrings
9 | {
10 | private static AppResources _localizedResources = new AppResources();
11 |
12 | public AppResources LocalizedResources { get { return _localizedResources; } }
13 | }
14 | }
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Properties/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace PluginSampleApp.iOS
9 | {
10 | public class Application
11 | {
12 | // This is the main entry point of the application.
13 | static void Main(string[] args)
14 | {
15 | // if you want to use a different Application Delegate class from "AppDelegate"
16 | // you can specify it here.
17 | UIApplication.Main(args, null, "AppDelegate");
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp/Models/Colors.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using Xamarin.Forms;
3 |
4 | namespace PluginSampleApp
5 | {
6 | public static class Colors
7 | {
8 | public static Color DefaultColor {
9 | get {
10 | var color = Color.White;
11 |
12 | Device.OnPlatform (() => {
13 | color = Color.Black;
14 | });
15 |
16 | return color;
17 | }
18 | }
19 |
20 | public static Color BlackOrWhite {
21 | get {
22 | var color = Color.Black;
23 |
24 | Device.OnPlatform (() => {
25 | color = Color.White;
26 | });
27 |
28 | return color;
29 | }
30 | }
31 | }
32 | }
33 |
34 |
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp/Models/Person.cs:
--------------------------------------------------------------------------------
1 | namespace SampleApp.Models
2 | {
3 | public class Person
4 | {
5 | public string FirstName { get; set; }
6 | public string LastName { get; set; }
7 | public string PhoneNumber { get; set; }
8 | public string Address { get; set; }
9 | }
10 | }
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp/PageTitle.cs:
--------------------------------------------------------------------------------
1 | namespace PluginSampleApp
2 | {
3 | public struct PageTitle
4 | {
5 | public const string SVG = "SVG";
6 | public const string ExtendedMap = "Extended Map";
7 | public const string ExtendedCellListview = "Extended Cell Listview";
8 | public const string ExtendedCellTableView = "Extended Cell TableView";
9 | public const string RoundedBoxView = "Rounded Box View";
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp/Pages/ExtendedTextCellListview.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using SampleApp.ViewModel;
7 | using Xamarin.Forms;
8 |
9 | namespace PluginSampleApp.Pages
10 | {
11 | public partial class ExtendedTextCellListview : ContentPage
12 | {
13 | public ExtendedTextCellListview()
14 | {
15 | InitializeComponent();
16 | BindingContext = new ListviewViewModel();
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp/Pages/ExtendedTextCellTableView.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Xamarin.Forms;
8 |
9 | namespace PluginSampleApp.Pages
10 | {
11 | public partial class ExtendedTextCellTableView : ContentPage
12 | {
13 | public ExtendedTextCellTableView()
14 | {
15 | InitializeComponent();
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/PluginSampleApp/PluginSampleApp/Pages/RoundedBoxViewPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Xamarin.Forms;
8 |
9 | namespace PluginSampleApp.Pages
10 | {
11 | public partial class RoundedBoxViewPage : ContentPage
12 | {
13 | public RoundedBoxViewPage()
14 | {
15 | InitializeComponent();
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/Tests/UiTests/Generator/StyleIdGenerator_Config.cs:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | public struct StyleIds
7 | {
8 | public struct TwoColumnCellListview
9 | {
10 |
11 | public static string cellListview = "cellListview";
12 | }
13 | public struct TwoColumnCellTableView
14 | {
15 |
16 | public static string stackLayoutCellTableView = "stackLayoutCellTableView";
17 | }
18 | }
19 |
20 |
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/Tests/UiTests/Generator/StyleIdGenerator_Config.tt:
--------------------------------------------------------------------------------
1 | <#@ template language="C#" #>
2 |
3 | <#
4 | //Point this path to the root folder for your project
5 | var startFolder = @"C:\Xamarin.Forms.Plugins\StyleIdGenerator";
6 | #>
7 |
8 | <#@include file="StyleIdGenerator.t4" #>
--------------------------------------------------------------------------------
/SampleApp/PluginSampleApp/Tests/UiTests/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.Droid/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.Droid/MainActivity.cs:
--------------------------------------------------------------------------------
1 | using Android.App;
2 | using Android.Content.PM;
3 | using Android.OS;
4 | using Xamarin.Forms;
5 | using Xamarin.Forms.Platform.Android;
6 |
7 | namespace SampleApp.Droid
8 | {
9 | [Activity(Label = "SampleApp", Icon = "@drawable/icon", MainLauncher = true,
10 | ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
11 | public class MainActivity : FormsApplicationActivity
12 | {
13 | protected override void OnCreate(Bundle bundle)
14 | {
15 | base.OnCreate(bundle);
16 |
17 | Forms.Init(this, bundle);
18 | LoadApplication(new App());
19 | }
20 | }
21 | }
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.Droid/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.Droid/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.Droid/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.Droid/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.Droid/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.Droid/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.Droid/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/AlignmentGrid.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/ApplicationIcon.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/Tiles/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Assets/Tiles/IconicTileSmall.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/LocalizedStrings.cs:
--------------------------------------------------------------------------------
1 | using SampleApp.WinPhone.Resources;
2 |
3 | namespace SampleApp.WinPhone
4 | {
5 | ///
6 | /// Provides access to string resources.
7 | ///
8 | public class LocalizedStrings
9 | {
10 | private static readonly AppResources _localizedResources = new AppResources();
11 |
12 | public AppResources LocalizedResources
13 | {
14 | get { return _localizedResources; }
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/MainPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using Microsoft.Phone.Controls;
2 | using Xamarin.Forms;
3 | using Xamarin.Forms.Platform.WinPhone;
4 |
5 | namespace SampleApp.WinPhone
6 | {
7 | public partial class MainPage : FormsApplicationPage
8 | {
9 | public MainPage()
10 | {
11 | InitializeComponent();
12 | SupportedOrientations = SupportedPageOrientation.PortraitOrLandscape;
13 |
14 | Forms.Init();
15 | LoadApplication(new SampleApp.App());
16 | }
17 | }
18 | }
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Properties/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/README_FIRST.txt:
--------------------------------------------------------------------------------
1 | For the Windows Phone toolkit make sure that you have
2 | marked the icons in the "Toolkit.Content" folder as content. That way they
3 | can be used as the icons for the ApplicationBar control.
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/SplashScreenImage.jpg
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Add.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Check.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Delete.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.WinPhone/Toolkit.Content/ApplicationBar.Select.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.WinPhone/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using UIKit;
2 |
3 | namespace SampleApp.iOS
4 | {
5 | public class Application
6 | {
7 | // This is the main entry point of the application.
8 | private static void Main(string[] args)
9 | {
10 | // if you want to use a different Application Delegate class from "AppDelegate"
11 | // you can specify it here.
12 | UIApplication.Main(args, null, "AppDelegate");
13 | }
14 | }
15 | }
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paulpatarinski/Xamarin.Forms.Plugins/5f401b05bc0c999ee6139060dd84864ac9e3640e/StyleIdGenerator/SampleApp/SampleApp.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp/Page1.xaml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp/Page1.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace SampleApp
4 | {
5 | public partial class Page1 : ContentPage
6 | {
7 | public Page1()
8 | {
9 | InitializeComponent();
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp/Page2.xaml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp/Page2.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace SampleApp
4 | {
5 | public partial class Page2 : ContentPage
6 | {
7 | public Page2()
8 | {
9 | InitializeComponent();
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/StyleIdGenerator/SampleApp/SampleApp/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/StyleIdGenerator/StyleIdGenerator/StyleIdGenerator/Generator/StyleIdGenerator_Config.cs:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | public struct StyleIds
7 | {
8 | public struct Page1
9 | {
10 |
11 | public static string lblMainText = "lblMainText";
12 |
13 | public static string lblWithSpace = "lbl With Space";
14 |
15 | public static string LBLALLCAPS = "LBLALLCAPS";
16 | }
17 | public struct Page2
18 | {
19 |
20 | public static string lblPage2 = "lblPage2";
21 | }
22 | }
23 |
24 |
--------------------------------------------------------------------------------
/StyleIdGenerator/StyleIdGenerator/StyleIdGenerator/Generator/StyleIdGenerator_Config.tt:
--------------------------------------------------------------------------------
1 | <#@ template language="C#" #>
2 |
3 | <#
4 | //Point this path to the root folder for your project
5 | var startFolder = @"C:\Xamarin.Forms.Plugins\StyleIdGenerator";
6 | #>
7 |
8 | <#@include file="StyleIdGenerator.t4" #>
--------------------------------------------------------------------------------
/StyleIdGenerator/StyleIdGenerator/UITests/CrossPlatformTests.cs:
--------------------------------------------------------------------------------
1 | using NUnit.Framework;
2 | using Xamarin.UITest;
3 |
4 | namespace UiTests
5 | {
6 | public partial class CrossPlatformTests
7 | {
8 | public IApp _app;
9 |
10 | ///
11 | /// We do 'Ignore' in the base class so that these set of tests aren't actually *run*
12 | /// outside the context of one of the platform-specific bootstrapper sub-classes.
13 | ///
14 | [SetUp]
15 | public virtual void SetUp()
16 | {
17 | Assert.Ignore("This class requires a platform-specific bootstrapper to override the `SetUp` method");
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/StyleIdGenerator/StyleIdGenerator/UITests/Page2Tests.cs:
--------------------------------------------------------------------------------
1 | using System.Linq;
2 | using NUnit.Framework;
3 | using UiTests.ExtensionsMethods;
4 | using Xamarin.UITest.Queries;
5 |
6 | namespace UiTests
7 | {
8 | public partial class CrossPlatformTests
9 | {
10 | [Test]
11 | public void LabelPage2_ShouldBeSelectable()
12 | {
13 | var lblPage2 = _app.Query(StyleIds.Page2.lblPage2);
14 |
15 | Assert.IsNotNull(lblPage2);
16 | Assert.IsTrue(lblPage2.Any());
17 | }
18 | }
19 | }
--------------------------------------------------------------------------------
/StyleIdGenerator/StyleIdGenerator/UITests/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------