├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Docs ├── DragAndDropEnabled.mp4 ├── MAUI │ ├── footer_android.png │ ├── grid_android.png │ ├── header_android.png │ ├── horizontal_android.png │ ├── main_android.png │ └── vertical_android.png ├── demo.mp4 ├── drag_enabled_animation.gif ├── drag_grid.gif ├── drag_vertical.gif ├── footer_android.png ├── github_banner.jpg ├── github_banner.pdn ├── github_banner.png ├── group_ios.png ├── header_android.png ├── header_demo.mp4 ├── header_demo_320.mp4 ├── hlv_carousel_iphone.gif ├── hlv_drag_android.png ├── hlv_drag_iphone.png ├── hlv_grid_android.png ├── hlv_grid_iphone.png ├── hlv_horizontal_android.png ├── hlv_horizontal_android_col2.png ├── hlv_horizontal_iphone.png ├── hlv_vertical_android.png ├── hlv_vertical_iphone.png ├── logo.png ├── logo_big.png ├── logo_maui.png ├── logo_maui_big.png ├── maui_banner.png ├── reveal.gif ├── scv_grid_android.png ├── scv_horizontal_ios.jpg └── video.mp4 ├── LICENSE ├── Maui ├── MauiSample │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── DependencyContainer.cs │ ├── Domain │ │ ├── ApplicationExceptions.cs │ │ └── Silly │ │ │ ├── ISillyDudeService.cs │ │ │ ├── SillyDude.cs │ │ │ └── SillyDudeService.cs │ ├── Infrastructure │ │ ├── ErrorEmulator.cs │ │ └── PlatformService.cs │ ├── Localization │ │ ├── SillyResources.Designer.cs │ │ ├── SillyResources.resx │ │ └── TranslateExtension.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── MauiSample.csproj │ ├── MauiSample.sln │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Tizen │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ ├── Presentation │ │ ├── Converters │ │ │ ├── ExceptionToErrorMessageConverter.cs │ │ │ ├── ExceptionToImageSourceConverter.cs │ │ │ ├── IsNotNullConverter.cs │ │ │ ├── IsNullConverter.cs │ │ │ ├── ListModeToInt.cs │ │ │ ├── ListModeToListLayout.cs │ │ │ ├── ListModeToVisibility.cs │ │ │ ├── NotConverter.cs │ │ │ ├── NullToValueConverter.cs │ │ │ ├── SafeAreaToDoubleConverter.cs │ │ │ ├── SafeAreaToGridLengthConverter.cs │ │ │ ├── SelectedItemEventArgsToSelectedItemConverter .cs │ │ │ ├── SizeScalingByScreenConverter.cs │ │ │ └── StringToResource.cs │ │ ├── CustomViews │ │ │ └── RichLabel.cs │ │ ├── Navigables │ │ │ ├── INavigationService.cs │ │ │ ├── IViewLocator.cs │ │ │ ├── Impl │ │ │ │ ├── FormsNavigationService.cs │ │ │ │ └── ViewLocator.cs │ │ │ └── NavigationTransition.cs │ │ ├── ViewModels │ │ │ ├── ANavigableViewModel.cs │ │ │ ├── ChoosePageViewModel.cs │ │ │ ├── ErrorEmulatorVm.cs │ │ │ ├── GridPageViewModel.cs │ │ │ ├── HeaderFooterGroupingPageViewModel.cs │ │ │ ├── IDudeItem.cs │ │ │ ├── LogoLetterVmo.cs │ │ │ └── SillyDudeVmo.cs │ │ └── Views │ │ │ ├── ChoosePage.xaml │ │ │ ├── ChoosePage.xaml.cs │ │ │ ├── DudeTemplateSelector.cs │ │ │ ├── GridPage.xaml │ │ │ ├── GridPage.xaml.cs │ │ │ ├── HeaderFooterGroupingPage.xaml │ │ │ ├── HeaderFooterGroupingPage.xaml.cs │ │ │ ├── HeaderFooterGroupingSizedTemplateSelector.cs │ │ │ ├── HeaderFooterGroupingTemplateSelector.cs │ │ │ ├── SillyGridCell.xaml │ │ │ ├── SillyGridCell.xaml.cs │ │ │ ├── SillyHorizontalCell.xaml │ │ │ ├── SillyHorizontalCell.xaml.cs │ │ │ ├── SillyListCell.xaml │ │ │ └── SillyListCell.xaml.cs │ └── Resources │ │ ├── AppIcon │ │ ├── appicon.svg │ │ ├── appiconfg.svg │ │ └── logo.png │ │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ ├── Road_Rage.otf │ │ └── ka1.ttf │ │ ├── Images │ │ ├── cocktail.png │ │ ├── dotnet_bot.svg │ │ ├── island.png │ │ └── leftarrow.png │ │ ├── Raw │ │ └── AboutAssets.txt │ │ ├── Splash │ │ ├── logo.png │ │ └── splash.svg │ │ └── Styles │ │ ├── Border.xaml │ │ ├── Colors.xaml │ │ ├── Shadows.xaml │ │ ├── Styles.xaml │ │ └── Text.xaml └── Sharpnado.CollectionView.Maui │ ├── MauiAppBuilderExtensions.cs │ ├── Platforms │ ├── Android │ │ ├── Helpers │ │ │ ├── JniExtensions.cs │ │ │ ├── JniWeakReference.cs │ │ │ ├── PlatformHelper.cs │ │ │ ├── ViewExtensions.cs │ │ │ ├── ViewHierarchyPrinter.cs │ │ │ └── ViewVisitor.cs │ │ ├── Initializer.cs │ │ └── Renderers │ │ │ ├── CellCache.cs │ │ │ ├── CenterSnapHelper.cs │ │ │ ├── CollectionViewRenderer.DragAnDropItemTouchHelperCallback.cs │ │ │ ├── CollectionViewRenderer.OnControlScrollChangedListener.cs │ │ │ ├── CollectionViewRenderer.RecycleViewAdapter.cs │ │ │ ├── CollectionViewRenderer.cs │ │ │ ├── CustomLinearLayoutManager.cs │ │ │ ├── MeasureHelper.cs │ │ │ ├── ResponsiveGridLayoutManager.cs │ │ │ ├── SlowRecyclerView.cs │ │ │ ├── StartSnapHelper.cs │ │ │ └── ViewHolderQueue.cs │ └── iOS │ │ ├── Helpers │ │ ├── IdentifierFormatter.cs │ │ ├── PlatformHelper.cs │ │ ├── ViewExtensions.cs │ │ ├── ViewHierarchyPrinter.cs │ │ └── ViewVisitor.cs │ │ ├── Initializer.cs │ │ └── Renderers │ │ ├── CenteredCollectionViewFlowLayout.cs │ │ ├── CollectionViewRenderer.DragAndDrop.cs │ │ ├── CollectionViewRenderer.cs │ │ ├── SizedFlowLayout.cs │ │ ├── SnappingCollectionViewLayout.cs │ │ ├── UIViewCellHolderQueue.cs │ │ └── iOSViewSource.cs │ ├── ReadMe.md │ ├── Settings.XamlStyler │ ├── Sharpnado.CollectionView.Maui.csproj │ ├── Sharpnado.CollectionView.Maui.sln │ ├── Sharpnado.CollectionView.Maui.sln.DotSettings │ └── Shims │ ├── XamarinFormsInternalsNamespace.cs │ ├── XamarinFormsNamespace.cs │ ├── XamarinFormsPlatformAndroidNamespace.cs │ ├── XamarinFormsPlatformIosNamespace.cs │ ├── XamarinFormsShapesNamespace.cs │ └── XamarinFormsXamlNamespace.cs ├── README.md ├── Settings.XamlStyler ├── StyleCopRules.ruleset ├── Xamarin.Forms ├── AssemblyInfo.targets ├── DragAndDropSample │ ├── DragAndDropSample.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── DragAndDropSample.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ ├── leftarrow.png │ │ │ └── splash_screen.xml │ │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ ├── DragAndDropSample.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ ├── Icon-App-57x57@2x.png │ │ │ │ ├── Icon-App-60x60@1x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-72x72@1x.png │ │ │ │ ├── Icon-App-72x72@2x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ ├── Icon-App-76x76@3x.png │ │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ │ ├── Icon-Small-50x50@1x.png │ │ │ │ ├── Icon-Small-50x50@2x.png │ │ │ │ └── ItunesArtwork@2x.png │ │ │ └── Contents.json │ │ ├── DragAndDropSample.iOS.csproj │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── LaunchScreen.storyboard │ │ │ └── leftarrow.png │ └── DragAndDropSample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Converters │ │ ├── ListModeToInt.cs │ │ ├── ListModeToListLayout.cs │ │ ├── ListModeToVisibility.cs │ │ └── StringToResource.cs │ │ ├── DependencyContainer.cs │ │ ├── DragAndDropSample.csproj │ │ ├── MainViewModel.cs │ │ ├── Navigables │ │ ├── INavigationService.cs │ │ ├── IViewLocator.cs │ │ ├── Impl │ │ │ ├── FormsNavigationService.cs │ │ │ └── ViewLocator.cs │ │ └── NavigationTransition.cs │ │ ├── Resources │ │ └── ka1.ttf │ │ ├── Services │ │ ├── ErrorEmulator.cs │ │ ├── Filmos.Designer.cs │ │ ├── Filmos.resx │ │ ├── ISillyDudeService.cs │ │ ├── SillyDude.cs │ │ └── SillyDudeService.cs │ │ ├── Styles.xaml │ │ ├── ViewModels │ │ ├── ANavigableViewModel.cs │ │ ├── ChoosePageViewModel.cs │ │ ├── GridPageViewModel.cs │ │ ├── HeaderFooterGroupingPageViewModel.cs │ │ ├── IDudeItem.cs │ │ ├── LogoLetterVmo.cs │ │ └── SillyDudeVmo.cs │ │ └── Views │ │ ├── ChoosePage.xaml │ │ ├── ChoosePage.xaml.cs │ │ ├── DudeTemplateSelector.cs │ │ ├── GridPage.xaml │ │ ├── GridPage.xaml.cs │ │ ├── HeaderFooterGroupingPage.xaml │ │ ├── HeaderFooterGroupingPage.xaml.cs │ │ ├── HeaderFooterGroupingSizedTemplateSelector.cs │ │ ├── HeaderFooterGroupingTemplateSelector.cs │ │ ├── RatingView.cs │ │ ├── RichLabel.cs │ │ ├── SillyGridCell.xaml │ │ ├── SillyGridCell.xaml.cs │ │ ├── SillyHorizontalCell.xaml │ │ ├── SillyHorizontalCell.xaml.cs │ │ ├── SillyListCell.xaml │ │ └── SillyListCell.xaml.cs ├── Sharpnado.CollectionView.Droid │ ├── Effects │ │ └── AndroidListViewStyleEffect.cs │ ├── Helpers │ │ ├── JniExtensions.cs │ │ ├── JniWeakReference.cs │ │ ├── PlatformHelper.cs │ │ ├── ViewExtensions.cs │ │ ├── ViewHierarchyPrinter.cs │ │ └── ViewVisitor.cs │ ├── Initializer.cs │ ├── Renderers │ │ ├── CellCache.cs │ │ ├── CenterSnapHelper.cs │ │ ├── CollectionViewRenderer.DragAnDropItemTouchHelperCallback.cs │ │ ├── CollectionViewRenderer.OnControlScrollChangedListener.cs │ │ ├── CollectionViewRenderer.RecycleViewAdapter.cs │ │ ├── CollectionViewRenderer.cs │ │ ├── CustomLinearLayoutManager.cs │ │ ├── MeasureHelper.cs │ │ ├── ResponsiveGridLayoutManager.cs │ │ ├── SlowRecyclerView.cs │ │ ├── StartSnapHelper.cs │ │ └── ViewHolderQueue.cs │ └── Sharpnado.CollectionView.Droid.csproj ├── Sharpnado.CollectionView.iOS │ ├── Effects │ │ └── iOSListViewStyleEffect.cs │ ├── Helpers │ │ ├── IdentifierFormatter.cs │ │ ├── PlatformHelper.cs │ │ ├── ViewExtensions.cs │ │ ├── ViewHierarchyPrinter.cs │ │ └── ViewVisitor.cs │ ├── Initializer.cs │ ├── Renderers │ │ ├── CenteredCollectionViewFlowLayout.cs │ │ ├── CollectionViewRenderer.DragAndDrop.cs │ │ ├── CollectionViewRenderer.cs │ │ ├── SizedFlowLayout.cs │ │ ├── SnappingCollectionViewLayout.cs │ │ ├── UIViewCellHolderQueue.cs │ │ └── iOSViewSource.cs │ └── Sharpnado.CollectionView.iOS.csproj ├── Sharpnado.CollectionView.nuspec ├── Sharpnado.CollectionView.sln ├── Sharpnado.CollectionView.sln.DotSettings ├── Sharpnado.CollectionView │ ├── AssemblyConfiguration.cs │ ├── Contract.cs │ ├── Effects │ │ └── ListViewEffect.cs │ ├── Helpers │ │ ├── ElementExtensions.cs │ │ ├── ElementHierarchyPrinter.cs │ │ ├── ElementVisitor.cs │ │ ├── ListExtensions.cs │ │ ├── SharpnadoViewExtensions.cs │ │ └── ViewExtensions.cs │ ├── Initializer.cs │ ├── InternalLogger.cs │ ├── Paging │ │ ├── IInfiniteListLoader.cs │ │ └── Paginator.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RenderedViews │ │ ├── CollectionView.cs │ │ ├── ComputationHelper.cs │ │ ├── PlatformHelper.cs │ │ ├── SizedDataTemplate.cs │ │ └── SizedDataTemplateSelector.cs │ ├── Services │ │ └── PageResult.cs │ ├── Sharpnado.CollectionView.csproj │ └── ViewModels │ │ ├── Bindable.cs │ │ ├── DragAndDropInfo.cs │ │ └── ObservableRangeCollection.cs ├── SillyAppSample │ └── README.md └── make-package.ps1 └── sharpnado.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/.gitignore -------------------------------------------------------------------------------- /Docs/DragAndDropEnabled.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/DragAndDropEnabled.mp4 -------------------------------------------------------------------------------- /Docs/MAUI/footer_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/MAUI/footer_android.png -------------------------------------------------------------------------------- /Docs/MAUI/grid_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/MAUI/grid_android.png -------------------------------------------------------------------------------- /Docs/MAUI/header_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/MAUI/header_android.png -------------------------------------------------------------------------------- /Docs/MAUI/horizontal_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/MAUI/horizontal_android.png -------------------------------------------------------------------------------- /Docs/MAUI/main_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/MAUI/main_android.png -------------------------------------------------------------------------------- /Docs/MAUI/vertical_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/MAUI/vertical_android.png -------------------------------------------------------------------------------- /Docs/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/demo.mp4 -------------------------------------------------------------------------------- /Docs/drag_enabled_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/drag_enabled_animation.gif -------------------------------------------------------------------------------- /Docs/drag_grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/drag_grid.gif -------------------------------------------------------------------------------- /Docs/drag_vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/drag_vertical.gif -------------------------------------------------------------------------------- /Docs/footer_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/footer_android.png -------------------------------------------------------------------------------- /Docs/github_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/github_banner.jpg -------------------------------------------------------------------------------- /Docs/github_banner.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/github_banner.pdn -------------------------------------------------------------------------------- /Docs/github_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/github_banner.png -------------------------------------------------------------------------------- /Docs/group_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/group_ios.png -------------------------------------------------------------------------------- /Docs/header_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/header_android.png -------------------------------------------------------------------------------- /Docs/header_demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/header_demo.mp4 -------------------------------------------------------------------------------- /Docs/header_demo_320.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/header_demo_320.mp4 -------------------------------------------------------------------------------- /Docs/hlv_carousel_iphone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/hlv_carousel_iphone.gif -------------------------------------------------------------------------------- /Docs/hlv_drag_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/hlv_drag_android.png -------------------------------------------------------------------------------- /Docs/hlv_drag_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/hlv_drag_iphone.png -------------------------------------------------------------------------------- /Docs/hlv_grid_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/hlv_grid_android.png -------------------------------------------------------------------------------- /Docs/hlv_grid_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/hlv_grid_iphone.png -------------------------------------------------------------------------------- /Docs/hlv_horizontal_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/hlv_horizontal_android.png -------------------------------------------------------------------------------- /Docs/hlv_horizontal_android_col2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/hlv_horizontal_android_col2.png -------------------------------------------------------------------------------- /Docs/hlv_horizontal_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/hlv_horizontal_iphone.png -------------------------------------------------------------------------------- /Docs/hlv_vertical_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/hlv_vertical_android.png -------------------------------------------------------------------------------- /Docs/hlv_vertical_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/hlv_vertical_iphone.png -------------------------------------------------------------------------------- /Docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/logo.png -------------------------------------------------------------------------------- /Docs/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/logo_big.png -------------------------------------------------------------------------------- /Docs/logo_maui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/logo_maui.png -------------------------------------------------------------------------------- /Docs/logo_maui_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/logo_maui_big.png -------------------------------------------------------------------------------- /Docs/maui_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/maui_banner.png -------------------------------------------------------------------------------- /Docs/reveal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/reveal.gif -------------------------------------------------------------------------------- /Docs/scv_grid_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/scv_grid_android.png -------------------------------------------------------------------------------- /Docs/scv_horizontal_ios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/scv_horizontal_ios.jpg -------------------------------------------------------------------------------- /Docs/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Docs/video.mp4 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/LICENSE -------------------------------------------------------------------------------- /Maui/MauiSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/App.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/App.xaml.cs -------------------------------------------------------------------------------- /Maui/MauiSample/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/AppShell.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/AppShell.xaml.cs -------------------------------------------------------------------------------- /Maui/MauiSample/DependencyContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/DependencyContainer.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Domain/ApplicationExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Domain/ApplicationExceptions.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Domain/Silly/ISillyDudeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Domain/Silly/ISillyDudeService.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Domain/Silly/SillyDude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Domain/Silly/SillyDude.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Domain/Silly/SillyDudeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Domain/Silly/SillyDudeService.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Infrastructure/ErrorEmulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Infrastructure/ErrorEmulator.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Infrastructure/PlatformService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Infrastructure/PlatformService.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Localization/SillyResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Localization/SillyResources.Designer.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Localization/SillyResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Localization/SillyResources.resx -------------------------------------------------------------------------------- /Maui/MauiSample/Localization/TranslateExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Localization/TranslateExtension.cs -------------------------------------------------------------------------------- /Maui/MauiSample/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/MainPage.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/MainPage.xaml.cs -------------------------------------------------------------------------------- /Maui/MauiSample/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/MauiProgram.cs -------------------------------------------------------------------------------- /Maui/MauiSample/MauiSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/MauiSample.csproj -------------------------------------------------------------------------------- /Maui/MauiSample/MauiSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/MauiSample.sln -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Maui/MauiSample/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/ExceptionToErrorMessageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/ExceptionToErrorMessageConverter.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/ExceptionToImageSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/ExceptionToImageSourceConverter.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/IsNotNullConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/IsNotNullConverter.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/IsNullConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/IsNullConverter.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/ListModeToInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/ListModeToInt.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/ListModeToListLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/ListModeToListLayout.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/ListModeToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/ListModeToVisibility.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/NotConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/NotConverter.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/NullToValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/NullToValueConverter.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/SafeAreaToDoubleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/SafeAreaToDoubleConverter.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/SafeAreaToGridLengthConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/SafeAreaToGridLengthConverter.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/SelectedItemEventArgsToSelectedItemConverter .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/SelectedItemEventArgsToSelectedItemConverter .cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/SizeScalingByScreenConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/SizeScalingByScreenConverter.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Converters/StringToResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Converters/StringToResource.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/CustomViews/RichLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/CustomViews/RichLabel.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Navigables/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Navigables/INavigationService.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Navigables/IViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Navigables/IViewLocator.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Navigables/Impl/FormsNavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Navigables/Impl/FormsNavigationService.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Navigables/Impl/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Navigables/Impl/ViewLocator.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Navigables/NavigationTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Navigables/NavigationTransition.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/ViewModels/ANavigableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/ViewModels/ANavigableViewModel.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/ViewModels/ChoosePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/ViewModels/ChoosePageViewModel.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/ViewModels/ErrorEmulatorVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/ViewModels/ErrorEmulatorVm.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/ViewModels/GridPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/ViewModels/GridPageViewModel.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/ViewModels/HeaderFooterGroupingPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/ViewModels/HeaderFooterGroupingPageViewModel.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/ViewModels/IDudeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/ViewModels/IDudeItem.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/ViewModels/LogoLetterVmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/ViewModels/LogoLetterVmo.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/ViewModels/SillyDudeVmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/ViewModels/SillyDudeVmo.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/ChoosePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/ChoosePage.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/ChoosePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/ChoosePage.xaml.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/DudeTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/DudeTemplateSelector.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/GridPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/GridPage.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/GridPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/GridPage.xaml.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/HeaderFooterGroupingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/HeaderFooterGroupingPage.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/HeaderFooterGroupingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/HeaderFooterGroupingPage.xaml.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/HeaderFooterGroupingSizedTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/HeaderFooterGroupingSizedTemplateSelector.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/HeaderFooterGroupingTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/HeaderFooterGroupingTemplateSelector.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/SillyGridCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/SillyGridCell.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/SillyGridCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/SillyGridCell.xaml.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/SillyHorizontalCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/SillyHorizontalCell.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/SillyHorizontalCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/SillyHorizontalCell.xaml.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/SillyListCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/SillyListCell.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/Presentation/Views/SillyListCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Presentation/Views/SillyListCell.xaml.cs -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/AppIcon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/AppIcon/logo.png -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Fonts/Road_Rage.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Fonts/Road_Rage.otf -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Fonts/ka1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Fonts/ka1.ttf -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Images/cocktail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Images/cocktail.png -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Images/island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Images/island.png -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Images/leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Images/leftarrow.png -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Splash/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Splash/logo.png -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Styles/Border.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Styles/Border.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Styles/Shadows.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Styles/Shadows.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Maui/MauiSample/Resources/Styles/Text.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/MauiSample/Resources/Styles/Text.xaml -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/MauiAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/MauiAppBuilderExtensions.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/JniExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/JniExtensions.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/JniWeakReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/JniWeakReference.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/PlatformHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/PlatformHelper.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/ViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/ViewExtensions.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/ViewHierarchyPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/ViewHierarchyPrinter.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/ViewVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Helpers/ViewVisitor.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Initializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Initializer.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CellCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CellCache.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CenterSnapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CenterSnapHelper.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CollectionViewRenderer.DragAnDropItemTouchHelperCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CollectionViewRenderer.DragAnDropItemTouchHelperCallback.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CollectionViewRenderer.OnControlScrollChangedListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CollectionViewRenderer.OnControlScrollChangedListener.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CollectionViewRenderer.RecycleViewAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CollectionViewRenderer.RecycleViewAdapter.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CollectionViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CollectionViewRenderer.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CustomLinearLayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/CustomLinearLayoutManager.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/MeasureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/MeasureHelper.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/ResponsiveGridLayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/ResponsiveGridLayoutManager.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/SlowRecyclerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/SlowRecyclerView.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/StartSnapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/StartSnapHelper.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/ViewHolderQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/Android/Renderers/ViewHolderQueue.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Helpers/IdentifierFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Helpers/IdentifierFormatter.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Helpers/PlatformHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Helpers/PlatformHelper.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Helpers/ViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Helpers/ViewExtensions.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Helpers/ViewHierarchyPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Helpers/ViewHierarchyPrinter.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Helpers/ViewVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Helpers/ViewVisitor.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Initializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Initializer.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/CenteredCollectionViewFlowLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/CenteredCollectionViewFlowLayout.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/CollectionViewRenderer.DragAndDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/CollectionViewRenderer.DragAndDrop.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/CollectionViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/CollectionViewRenderer.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/SizedFlowLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/SizedFlowLayout.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/SnappingCollectionViewLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/SnappingCollectionViewLayout.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/UIViewCellHolderQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/UIViewCellHolderQueue.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/iOSViewSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Platforms/iOS/Renderers/iOSViewSource.cs -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/ReadMe.md -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Settings.XamlStyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Settings.XamlStyler -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Sharpnado.CollectionView.Maui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Sharpnado.CollectionView.Maui.csproj -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Sharpnado.CollectionView.Maui.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Sharpnado.CollectionView.Maui.sln -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Sharpnado.CollectionView.Maui.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Maui/Sharpnado.CollectionView.Maui/Sharpnado.CollectionView.Maui.sln.DotSettings -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Shims/XamarinFormsInternalsNamespace.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.Forms.Internals; -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Shims/XamarinFormsNamespace.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.Forms.Xaml; 2 | -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Shims/XamarinFormsPlatformAndroidNamespace.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.Forms.Platform.Android; -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Shims/XamarinFormsPlatformIosNamespace.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.Forms.Platform.iOS; -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Shims/XamarinFormsShapesNamespace.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.Forms.Shapes; 2 | -------------------------------------------------------------------------------- /Maui/Sharpnado.CollectionView.Maui/Shims/XamarinFormsXamlNamespace.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.Forms; 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/README.md -------------------------------------------------------------------------------- /Settings.XamlStyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Settings.XamlStyler -------------------------------------------------------------------------------- /StyleCopRules.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/StyleCopRules.ruleset -------------------------------------------------------------------------------- /Xamarin.Forms/AssemblyInfo.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/AssemblyInfo.targets -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/DragAndDropSample.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/DragAndDropSample.Android.csproj -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/MainActivity.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable/leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable/leftarrow.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/drawable/splash_screen.xml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/DragAndDropSample.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/DragAndDropSample.iOS.csproj -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Info.plist -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Main.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Resources/leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample.iOS/Resources/leftarrow.png -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/App.xaml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/App.xaml.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Converters/ListModeToInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Converters/ListModeToInt.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Converters/ListModeToListLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Converters/ListModeToListLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Converters/ListModeToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Converters/ListModeToVisibility.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Converters/StringToResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Converters/StringToResource.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/DependencyContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/DependencyContainer.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/DragAndDropSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/DragAndDropSample.csproj -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/MainViewModel.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Navigables/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Navigables/INavigationService.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Navigables/IViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Navigables/IViewLocator.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Navigables/Impl/FormsNavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Navigables/Impl/FormsNavigationService.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Navigables/Impl/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Navigables/Impl/ViewLocator.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Navigables/NavigationTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Navigables/NavigationTransition.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Resources/ka1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Resources/ka1.ttf -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/ErrorEmulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/ErrorEmulator.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/Filmos.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/Filmos.Designer.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/Filmos.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/Filmos.resx -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/ISillyDudeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/ISillyDudeService.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/SillyDude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/SillyDude.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/SillyDudeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Services/SillyDudeService.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Styles.xaml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/ANavigableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/ANavigableViewModel.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/ChoosePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/ChoosePageViewModel.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/GridPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/GridPageViewModel.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/HeaderFooterGroupingPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/HeaderFooterGroupingPageViewModel.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/IDudeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/IDudeItem.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/LogoLetterVmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/LogoLetterVmo.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/SillyDudeVmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/ViewModels/SillyDudeVmo.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/ChoosePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/ChoosePage.xaml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/ChoosePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/ChoosePage.xaml.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/DudeTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/DudeTemplateSelector.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/GridPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/GridPage.xaml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/GridPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/GridPage.xaml.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/HeaderFooterGroupingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/HeaderFooterGroupingPage.xaml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/HeaderFooterGroupingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/HeaderFooterGroupingPage.xaml.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/HeaderFooterGroupingSizedTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/HeaderFooterGroupingSizedTemplateSelector.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/HeaderFooterGroupingTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/HeaderFooterGroupingTemplateSelector.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/RatingView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/RatingView.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/RichLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/RichLabel.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyGridCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyGridCell.xaml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyGridCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyGridCell.xaml.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyHorizontalCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyHorizontalCell.xaml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyHorizontalCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyHorizontalCell.xaml.cs -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyListCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyListCell.xaml -------------------------------------------------------------------------------- /Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyListCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/DragAndDropSample/DragAndDropSample/Views/SillyListCell.xaml.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Effects/AndroidListViewStyleEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Effects/AndroidListViewStyleEffect.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/JniExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/JniExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/JniWeakReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/JniWeakReference.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/PlatformHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/PlatformHelper.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/ViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/ViewExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/ViewHierarchyPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/ViewHierarchyPrinter.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/ViewVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Helpers/ViewVisitor.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Initializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Initializer.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CellCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CellCache.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CenterSnapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CenterSnapHelper.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CollectionViewRenderer.DragAnDropItemTouchHelperCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CollectionViewRenderer.DragAnDropItemTouchHelperCallback.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CollectionViewRenderer.OnControlScrollChangedListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CollectionViewRenderer.OnControlScrollChangedListener.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CollectionViewRenderer.RecycleViewAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CollectionViewRenderer.RecycleViewAdapter.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CollectionViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CollectionViewRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CustomLinearLayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/CustomLinearLayoutManager.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/MeasureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/MeasureHelper.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/ResponsiveGridLayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/ResponsiveGridLayoutManager.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/SlowRecyclerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/SlowRecyclerView.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/StartSnapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/StartSnapHelper.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/ViewHolderQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Renderers/ViewHolderQueue.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.Droid/Sharpnado.CollectionView.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.Droid/Sharpnado.CollectionView.Droid.csproj -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Effects/iOSListViewStyleEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Effects/iOSListViewStyleEffect.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Helpers/IdentifierFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Helpers/IdentifierFormatter.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Helpers/PlatformHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Helpers/PlatformHelper.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Helpers/ViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Helpers/ViewExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Helpers/ViewHierarchyPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Helpers/ViewHierarchyPrinter.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Helpers/ViewVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Helpers/ViewVisitor.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Initializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Initializer.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/CenteredCollectionViewFlowLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/CenteredCollectionViewFlowLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/CollectionViewRenderer.DragAndDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/CollectionViewRenderer.DragAndDrop.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/CollectionViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/CollectionViewRenderer.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/SizedFlowLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/SizedFlowLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/SnappingCollectionViewLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/SnappingCollectionViewLayout.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/UIViewCellHolderQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/UIViewCellHolderQueue.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/iOSViewSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Renderers/iOSViewSource.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.iOS/Sharpnado.CollectionView.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.iOS/Sharpnado.CollectionView.iOS.csproj -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.nuspec -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.sln -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView.sln.DotSettings -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/AssemblyConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/AssemblyConfiguration.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Contract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Contract.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Effects/ListViewEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Effects/ListViewEffect.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Helpers/ElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Helpers/ElementExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Helpers/ElementHierarchyPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Helpers/ElementHierarchyPrinter.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Helpers/ElementVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Helpers/ElementVisitor.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Helpers/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Helpers/ListExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Helpers/SharpnadoViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Helpers/SharpnadoViewExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Helpers/ViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Helpers/ViewExtensions.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Initializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Initializer.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/InternalLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/InternalLogger.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Paging/IInfiniteListLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Paging/IInfiniteListLoader.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Paging/Paginator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Paging/Paginator.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/RenderedViews/CollectionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/RenderedViews/CollectionView.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/RenderedViews/ComputationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/RenderedViews/ComputationHelper.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/RenderedViews/PlatformHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/RenderedViews/PlatformHelper.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/RenderedViews/SizedDataTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/RenderedViews/SizedDataTemplate.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/RenderedViews/SizedDataTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/RenderedViews/SizedDataTemplateSelector.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Services/PageResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Services/PageResult.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/Sharpnado.CollectionView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/Sharpnado.CollectionView.csproj -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/ViewModels/Bindable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/ViewModels/Bindable.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/ViewModels/DragAndDropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/ViewModels/DragAndDropInfo.cs -------------------------------------------------------------------------------- /Xamarin.Forms/Sharpnado.CollectionView/ViewModels/ObservableRangeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/Sharpnado.CollectionView/ViewModels/ObservableRangeCollection.cs -------------------------------------------------------------------------------- /Xamarin.Forms/SillyAppSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/SillyAppSample/README.md -------------------------------------------------------------------------------- /Xamarin.Forms/make-package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/Xamarin.Forms/make-package.ps1 -------------------------------------------------------------------------------- /sharpnado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubachof/Sharpnado.CollectionView/HEAD/sharpnado.png --------------------------------------------------------------------------------