├── .DS_Store ├── .gitignore ├── LICENSE ├── Maui.NFT.Marketplace.Resources ├── .DS_Store ├── Fonts │ ├── .DS_Store │ ├── AtypDisplay-Bold.ttf │ └── AtypDisplay-Regular.ttf └── Images │ ├── .DS_Store │ ├── img01.png │ ├── img02.png │ ├── img03.png │ ├── img04.png │ ├── img05.png │ ├── img06.png │ ├── img07.png │ ├── img08.png │ ├── img09.png │ ├── img10.png │ ├── img11.png │ ├── img12.png │ ├── img13.png │ ├── img14.png │ ├── img15.png │ ├── img16.png │ ├── img17.png │ └── img18.png ├── Maui.Snppts ├── .DS_Store ├── database-scripts │ └── Database with Sample Data for Snppts.sql ├── maui-app-resources │ ├── .DS_Store │ ├── Fonts │ │ ├── TitilliumWeb-Light.ttf │ │ ├── TitilliumWeb-Regular.ttf │ │ └── TitilliumWeb-SemiBold.ttf │ ├── Images │ │ ├── .DS_Store │ │ ├── icnadd.png │ │ ├── icnandroid.png │ │ ├── icnapple.png │ │ ├── icnback.png │ │ ├── icnclear.png │ │ ├── icnclose.png │ │ ├── icnfilter.png │ │ ├── icnhamburger.png │ │ ├── icninfo.png │ │ ├── icnsearch.png │ │ ├── icnsettings.png │ │ ├── icnshare.png │ │ ├── icnsort.png │ │ ├── icnwindows.png │ │ └── iphonemock.png │ ├── Maui.Apps.Framework │ │ ├── .DS_Store │ │ ├── Converters │ │ │ ├── .DS_Store │ │ │ └── EnumerationContainsElementConverter.cs │ │ ├── Exceptions │ │ │ └── InternetConnectionException.cs │ │ ├── Extensions │ │ │ ├── DateExtensions.cs │ │ │ ├── ListExtensions.cs │ │ │ ├── NumberExtensions.cs │ │ │ └── StringExtensions.cs │ │ ├── GlobalUsings.cs │ │ ├── MVVM │ │ │ └── ViewModelBase.cs │ │ ├── Maui.Apps.Framework.csproj │ │ ├── Services │ │ │ └── RestServiceBase.cs │ │ └── UI │ │ │ ├── ContentDisplayMode.cs │ │ │ ├── Controls │ │ │ └── PinchToZoomContainer.cs │ │ │ └── PageMode.cs │ ├── PanCardView │ │ ├── .DS_Store │ │ ├── Common │ │ │ ├── Behaviors │ │ │ │ ├── ContextAssignedBehavior.cs │ │ │ │ └── ProtectedControlBehavior.cs │ │ │ ├── CardsView.cs │ │ │ ├── CarouselView.cs │ │ │ ├── Controls │ │ │ │ ├── ArrowControl.cs │ │ │ │ ├── CircleFrame.cs │ │ │ │ ├── IndicatorItemView.cs │ │ │ │ ├── IndicatorsControl.cs │ │ │ │ ├── LeftArrowControl.cs │ │ │ │ ├── RightArrowControl.cs │ │ │ │ └── TabsControl.cs │ │ │ ├── CoverFlowView.cs │ │ │ ├── CubeView.cs │ │ │ ├── Delegates │ │ │ │ ├── CardsViewItemAppearedHandler.cs │ │ │ │ ├── CardsViewItemAppearingHandler.cs │ │ │ │ ├── CardsViewItemDisappearingHandler.cs │ │ │ │ ├── CardsViewItemSwipedHandler.cs │ │ │ │ └── CardsViewUserInteractedHandler.cs │ │ │ ├── Enums │ │ │ │ ├── AnimationDirection.cs │ │ │ │ ├── InteractionState.cs │ │ │ │ ├── InteractionType.cs │ │ │ │ ├── ItemSwipeDirection.cs │ │ │ │ ├── StripePostion.cs │ │ │ │ └── UserInteractionStatus.cs │ │ │ ├── EventArgs │ │ │ │ ├── ItemAppearedEventArgs.cs │ │ │ │ ├── ItemAppearingEventArgs.cs │ │ │ │ ├── ItemDisappearingEventArgs.cs │ │ │ │ ├── ItemSwipedEventArgs.cs │ │ │ │ └── UserInteractedEventArgs.cs │ │ │ ├── Extensions │ │ │ │ └── CardViewExtensions.cs │ │ │ ├── PanCardView.csproj │ │ │ ├── Preserver.cs │ │ │ ├── Processors │ │ │ │ ├── CardsProcessor.cs │ │ │ │ ├── CarouselProcessor.cs │ │ │ │ ├── Constants.cs │ │ │ │ ├── CoverFlowProcessor.cs │ │ │ │ ├── CubeProcessor.cs │ │ │ │ └── IProcessor.cs │ │ │ ├── Resources │ │ │ │ ├── ResourcesInfo.cs │ │ │ │ ├── leftArrow.png │ │ │ │ ├── leftArrowBlack.png │ │ │ │ ├── rightArrow.png │ │ │ │ └── rightArrowBlack.png │ │ │ ├── Styles │ │ │ │ └── DefaultIndicatorItemStyles.cs │ │ │ └── Utility │ │ │ │ ├── AnimationWrapper.cs │ │ │ │ ├── IAnimationsChecker.cs │ │ │ │ ├── InteractionItem.cs │ │ │ │ ├── InteractionQueue.cs │ │ │ │ ├── Optional.cs │ │ │ │ ├── ProcessorItem.cs │ │ │ │ ├── TimeDiffItem.cs │ │ │ │ ├── ViewSizeInfoItem.cs │ │ │ │ └── ViewsInUseSet.cs │ │ └── PanCardView.csproj │ └── Raw │ │ └── loadinganim.json ├── maui-app-starter-project │ ├── Maui.Apps.Framework │ │ ├── .DS_Store │ │ ├── Converters │ │ │ ├── .DS_Store │ │ │ └── EnumerationContainsElementConverter.cs │ │ ├── Exceptions │ │ │ └── InternetConnectionException.cs │ │ ├── Extensions │ │ │ ├── DateExtensions.cs │ │ │ ├── ListExtensions.cs │ │ │ ├── NumberExtensions.cs │ │ │ └── StringExtensions.cs │ │ ├── GlobalUsings.cs │ │ ├── MVVM │ │ │ └── ViewModelBase.cs │ │ ├── Maui.Apps.Framework.csproj │ │ ├── Services │ │ │ └── RestServiceBase.cs │ │ └── UI │ │ │ ├── ContentDisplayMode.cs │ │ │ ├── Controls │ │ │ └── PinchToZoomContainer.cs │ │ │ └── PageMode.cs │ ├── PanCardView │ │ ├── .DS_Store │ │ ├── Common │ │ │ ├── Behaviors │ │ │ │ ├── ContextAssignedBehavior.cs │ │ │ │ └── ProtectedControlBehavior.cs │ │ │ ├── CardsView.cs │ │ │ ├── CarouselView.cs │ │ │ ├── Controls │ │ │ │ ├── ArrowControl.cs │ │ │ │ ├── CircleFrame.cs │ │ │ │ ├── IndicatorItemView.cs │ │ │ │ ├── IndicatorsControl.cs │ │ │ │ ├── LeftArrowControl.cs │ │ │ │ ├── RightArrowControl.cs │ │ │ │ └── TabsControl.cs │ │ │ ├── CoverFlowView.cs │ │ │ ├── CubeView.cs │ │ │ ├── Delegates │ │ │ │ ├── CardsViewItemAppearedHandler.cs │ │ │ │ ├── CardsViewItemAppearingHandler.cs │ │ │ │ ├── CardsViewItemDisappearingHandler.cs │ │ │ │ ├── CardsViewItemSwipedHandler.cs │ │ │ │ └── CardsViewUserInteractedHandler.cs │ │ │ ├── Enums │ │ │ │ ├── AnimationDirection.cs │ │ │ │ ├── InteractionState.cs │ │ │ │ ├── InteractionType.cs │ │ │ │ ├── ItemSwipeDirection.cs │ │ │ │ ├── StripePostion.cs │ │ │ │ └── UserInteractionStatus.cs │ │ │ ├── EventArgs │ │ │ │ ├── ItemAppearedEventArgs.cs │ │ │ │ ├── ItemAppearingEventArgs.cs │ │ │ │ ├── ItemDisappearingEventArgs.cs │ │ │ │ ├── ItemSwipedEventArgs.cs │ │ │ │ └── UserInteractedEventArgs.cs │ │ │ ├── Extensions │ │ │ │ └── CardViewExtensions.cs │ │ │ ├── PanCardView.csproj │ │ │ ├── Preserver.cs │ │ │ ├── Processors │ │ │ │ ├── CardsProcessor.cs │ │ │ │ ├── CarouselProcessor.cs │ │ │ │ ├── Constants.cs │ │ │ │ ├── CoverFlowProcessor.cs │ │ │ │ ├── CubeProcessor.cs │ │ │ │ └── IProcessor.cs │ │ │ ├── Resources │ │ │ │ ├── ResourcesInfo.cs │ │ │ │ ├── leftArrow.png │ │ │ │ ├── leftArrowBlack.png │ │ │ │ ├── rightArrow.png │ │ │ │ └── rightArrowBlack.png │ │ │ ├── Styles │ │ │ │ └── DefaultIndicatorItemStyles.cs │ │ │ └── Utility │ │ │ │ ├── AnimationWrapper.cs │ │ │ │ ├── IAnimationsChecker.cs │ │ │ │ ├── InteractionItem.cs │ │ │ │ ├── InteractionQueue.cs │ │ │ │ ├── Optional.cs │ │ │ │ ├── ProcessorItem.cs │ │ │ │ ├── TimeDiffItem.cs │ │ │ │ ├── ViewSizeInfoItem.cs │ │ │ │ └── ViewsInUseSet.cs │ │ └── PanCardView.csproj │ └── SnpptsApp │ │ ├── .DS_Store │ │ ├── SnpptsApp.sln │ │ └── SnpptsApp │ │ ├── .DS_Store │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Base │ │ ├── ViewControls │ │ │ ├── ErrorIndicator.xaml │ │ │ ├── ErrorIndicator.xaml.cs │ │ │ ├── LoadingIndicator.xaml │ │ │ └── LoadingIndicator.xaml.cs │ │ ├── ViewModels │ │ │ └── AppViewModelBase.cs │ │ └── Views │ │ │ ├── PageBase.xaml │ │ │ ├── PageBase.xaml.cs │ │ │ └── ViewBase.cs │ │ ├── GlobalUsings.cs │ │ ├── Helpers │ │ └── ServiceHelpers.cs │ │ ├── MauiProgram.cs │ │ ├── Models │ │ ├── AppModels.cs │ │ └── Constants.cs │ │ ├── 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 │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Resources │ │ ├── AppIcon │ │ │ ├── appicon.svg │ │ │ └── appiconfg.svg │ │ ├── Fonts │ │ │ ├── TitilliumWeb-Regular.ttf │ │ │ └── TitilliumWeb-SemiBold.ttf │ │ ├── Images │ │ │ ├── dotnet_bot.svg │ │ │ ├── icnadd.png │ │ │ ├── icnandroid.png │ │ │ ├── icnapple.png │ │ │ ├── icnback.png │ │ │ ├── icnclear.png │ │ │ ├── icnclose.png │ │ │ ├── icnfilter.png │ │ │ ├── icnhamburger.png │ │ │ ├── icninfo.png │ │ │ ├── icnsearch.png │ │ │ ├── icnsettings.png │ │ │ ├── icnshare.png │ │ │ ├── icnsort.png │ │ │ ├── icnwindows.png │ │ │ └── iphonemock.png │ │ ├── Raw │ │ │ ├── AboutAssets.txt │ │ │ └── loadinganim.json │ │ └── Splash │ │ │ └── splash.svg │ │ ├── Services │ │ ├── AppSettingsService.cs │ │ ├── IApiService.cs │ │ ├── ISettingsService.cs │ │ └── SnpptsApiService.cs │ │ ├── SnpptsApp.csproj │ │ ├── ViewModels │ │ ├── AboutPageViewModel.cs │ │ ├── AddNewSnippetPageViewModel.cs │ │ ├── ImageViewerPageViewModel.cs │ │ ├── SettingsPageViewModel.cs │ │ ├── SnippetDetailsPageViewModel.cs │ │ └── StartPageViewModel.cs │ │ └── Views │ │ ├── AboutPage.xaml │ │ ├── AboutPage.xaml.cs │ │ ├── AddNewSnippetsPage.xaml │ │ ├── AddNewSnippetsPage.xaml.cs │ │ ├── ImageViewerPage.xaml │ │ ├── ImageViewerPage.xaml.cs │ │ ├── SettingsPage.xaml │ │ ├── SettingsPage.xaml.cs │ │ ├── SnippetDetailsPage.xaml │ │ ├── SnippetDetailsPage.xaml.cs │ │ ├── StartPage.xaml │ │ └── StartPage.xaml.cs ├── snippets └── webapi-app │ ├── .DS_Store │ └── Snppts_API │ ├── .DS_Store │ ├── Snppts_API.sln │ └── Snppts_API │ ├── .DS_Store │ ├── Controllers │ └── SnpptsController.cs │ ├── Models │ ├── Snppts_Author.cs │ ├── Snppts_Category.cs │ ├── Snppts_Image.cs │ ├── Snppts_Result.cs │ └── Snppts_Snippet.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Snppts_API.csproj │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/LICENSE -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/.DS_Store -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Fonts/.DS_Store -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Fonts/AtypDisplay-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Fonts/AtypDisplay-Bold.ttf -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Fonts/AtypDisplay-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Fonts/AtypDisplay-Regular.ttf -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/.DS_Store -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img01.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img02.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img03.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img04.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img05.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img06.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img07.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img08.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img09.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img10.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img11.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img12.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img13.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img14.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img15.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img16.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img17.png -------------------------------------------------------------------------------- /Maui.NFT.Marketplace.Resources/Images/img18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.NFT.Marketplace.Resources/Images/img18.png -------------------------------------------------------------------------------- /Maui.Snppts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/database-scripts/Database with Sample Data for Snppts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/database-scripts/Database with Sample Data for Snppts.sql -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Fonts/TitilliumWeb-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Fonts/TitilliumWeb-Light.ttf -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Fonts/TitilliumWeb-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Fonts/TitilliumWeb-SemiBold.ttf -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnadd.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnandroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnandroid.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnapple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnapple.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnback.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnclear.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnclose.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnfilter.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnhamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnhamburger.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icninfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icninfo.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnsearch.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnsettings.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnshare.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnsort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnsort.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/icnwindows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/icnwindows.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Images/iphonemock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Images/iphonemock.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Converters/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Converters/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Converters/EnumerationContainsElementConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Converters/EnumerationContainsElementConverter.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Exceptions/InternetConnectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Exceptions/InternetConnectionException.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Extensions/DateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Extensions/DateExtensions.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Extensions/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Extensions/ListExtensions.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Extensions/NumberExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Extensions/NumberExtensions.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/GlobalUsings.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/MVVM/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/MVVM/ViewModelBase.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Maui.Apps.Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Maui.Apps.Framework.csproj -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Services/RestServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/Services/RestServiceBase.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/UI/ContentDisplayMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/UI/ContentDisplayMode.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/UI/Controls/PinchToZoomContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/UI/Controls/PinchToZoomContainer.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Maui.Apps.Framework/UI/PageMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Maui.Apps.Framework/UI/PageMode.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Behaviors/ContextAssignedBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Behaviors/ContextAssignedBehavior.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Behaviors/ProtectedControlBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Behaviors/ProtectedControlBehavior.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/CardsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/CardsView.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/CarouselView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/CarouselView.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/ArrowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/ArrowControl.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/CircleFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/CircleFrame.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/IndicatorItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/IndicatorItemView.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/IndicatorsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/IndicatorsControl.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/LeftArrowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/LeftArrowControl.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/RightArrowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/RightArrowControl.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/TabsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Controls/TabsControl.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/CoverFlowView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/CoverFlowView.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/CubeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/CubeView.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Delegates/CardsViewItemAppearedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Delegates/CardsViewItemAppearedHandler.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Delegates/CardsViewItemAppearingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Delegates/CardsViewItemAppearingHandler.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Delegates/CardsViewItemDisappearingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Delegates/CardsViewItemDisappearingHandler.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Delegates/CardsViewItemSwipedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Delegates/CardsViewItemSwipedHandler.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Delegates/CardsViewUserInteractedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Delegates/CardsViewUserInteractedHandler.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/AnimationDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/AnimationDirection.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/InteractionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/InteractionState.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/InteractionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/InteractionType.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/ItemSwipeDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/ItemSwipeDirection.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/StripePostion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/StripePostion.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/UserInteractionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Enums/UserInteractionStatus.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/EventArgs/ItemAppearedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/EventArgs/ItemAppearedEventArgs.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/EventArgs/ItemAppearingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/EventArgs/ItemAppearingEventArgs.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/EventArgs/ItemDisappearingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/EventArgs/ItemDisappearingEventArgs.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/EventArgs/ItemSwipedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/EventArgs/ItemSwipedEventArgs.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/EventArgs/UserInteractedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/EventArgs/UserInteractedEventArgs.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Extensions/CardViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Extensions/CardViewExtensions.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/PanCardView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/PanCardView.csproj -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Preserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Preserver.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/CardsProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/CardsProcessor.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/CarouselProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/CarouselProcessor.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/Constants.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/CoverFlowProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/CoverFlowProcessor.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/CubeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/CubeProcessor.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/IProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Processors/IProcessor.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Resources/ResourcesInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Resources/ResourcesInfo.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Resources/leftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Resources/leftArrow.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Resources/leftArrowBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Resources/leftArrowBlack.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Resources/rightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Resources/rightArrow.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Resources/rightArrowBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Resources/rightArrowBlack.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Styles/DefaultIndicatorItemStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Styles/DefaultIndicatorItemStyles.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/AnimationWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/AnimationWrapper.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/IAnimationsChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/IAnimationsChecker.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/InteractionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/InteractionItem.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/InteractionQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/InteractionQueue.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/Optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/Optional.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/ProcessorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/ProcessorItem.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/TimeDiffItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/TimeDiffItem.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/ViewSizeInfoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/ViewSizeInfoItem.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/ViewsInUseSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/Common/Utility/ViewsInUseSet.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/PanCardView/PanCardView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/PanCardView/PanCardView.csproj -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-resources/Raw/loadinganim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-resources/Raw/loadinganim.json -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Converters/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Converters/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Converters/EnumerationContainsElementConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Converters/EnumerationContainsElementConverter.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Exceptions/InternetConnectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Exceptions/InternetConnectionException.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Extensions/DateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Extensions/DateExtensions.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Extensions/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Extensions/ListExtensions.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Extensions/NumberExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Extensions/NumberExtensions.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/GlobalUsings.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/MVVM/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/MVVM/ViewModelBase.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Maui.Apps.Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Maui.Apps.Framework.csproj -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Services/RestServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/Services/RestServiceBase.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/UI/ContentDisplayMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/UI/ContentDisplayMode.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/UI/Controls/PinchToZoomContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/UI/Controls/PinchToZoomContainer.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/UI/PageMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/Maui.Apps.Framework/UI/PageMode.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Behaviors/ContextAssignedBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Behaviors/ContextAssignedBehavior.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Behaviors/ProtectedControlBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Behaviors/ProtectedControlBehavior.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/CardsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/CardsView.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/CarouselView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/CarouselView.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/ArrowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/ArrowControl.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/CircleFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/CircleFrame.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/IndicatorItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/IndicatorItemView.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/IndicatorsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/IndicatorsControl.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/LeftArrowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/LeftArrowControl.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/RightArrowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/RightArrowControl.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/TabsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Controls/TabsControl.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/CoverFlowView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/CoverFlowView.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/CubeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/CubeView.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Delegates/CardsViewItemAppearedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Delegates/CardsViewItemAppearedHandler.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Delegates/CardsViewItemAppearingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Delegates/CardsViewItemAppearingHandler.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Delegates/CardsViewItemDisappearingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Delegates/CardsViewItemDisappearingHandler.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Delegates/CardsViewItemSwipedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Delegates/CardsViewItemSwipedHandler.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Delegates/CardsViewUserInteractedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Delegates/CardsViewUserInteractedHandler.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/AnimationDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/AnimationDirection.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/InteractionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/InteractionState.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/InteractionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/InteractionType.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/ItemSwipeDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/ItemSwipeDirection.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/StripePostion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/StripePostion.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/UserInteractionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Enums/UserInteractionStatus.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/EventArgs/ItemAppearedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/EventArgs/ItemAppearedEventArgs.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/EventArgs/ItemAppearingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/EventArgs/ItemAppearingEventArgs.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/EventArgs/ItemDisappearingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/EventArgs/ItemDisappearingEventArgs.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/EventArgs/ItemSwipedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/EventArgs/ItemSwipedEventArgs.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/EventArgs/UserInteractedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/EventArgs/UserInteractedEventArgs.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Extensions/CardViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Extensions/CardViewExtensions.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/PanCardView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/PanCardView.csproj -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Preserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Preserver.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/CardsProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/CardsProcessor.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/CarouselProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/CarouselProcessor.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/Constants.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/CoverFlowProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/CoverFlowProcessor.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/CubeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/CubeProcessor.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/IProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Processors/IProcessor.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Resources/ResourcesInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Resources/ResourcesInfo.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Resources/leftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Resources/leftArrow.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Resources/leftArrowBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Resources/leftArrowBlack.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Resources/rightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Resources/rightArrow.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Resources/rightArrowBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Resources/rightArrowBlack.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Styles/DefaultIndicatorItemStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Styles/DefaultIndicatorItemStyles.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/AnimationWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/AnimationWrapper.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/IAnimationsChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/IAnimationsChecker.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/InteractionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/InteractionItem.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/InteractionQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/InteractionQueue.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/Optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/Optional.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/ProcessorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/ProcessorItem.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/TimeDiffItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/TimeDiffItem.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/ViewSizeInfoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/ViewSizeInfoItem.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/ViewsInUseSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/Common/Utility/ViewsInUseSet.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/PanCardView/PanCardView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/PanCardView/PanCardView.csproj -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp.sln -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/App.xaml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/App.xaml.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/ViewControls/ErrorIndicator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/ViewControls/ErrorIndicator.xaml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/ViewControls/ErrorIndicator.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/ViewControls/ErrorIndicator.xaml.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/ViewControls/LoadingIndicator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/ViewControls/LoadingIndicator.xaml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/ViewControls/LoadingIndicator.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/ViewControls/LoadingIndicator.xaml.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/ViewModels/AppViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/ViewModels/AppViewModelBase.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/Views/PageBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/Views/PageBase.xaml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/Views/PageBase.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/Views/PageBase.xaml.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/Views/ViewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Base/Views/ViewBase.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/GlobalUsings.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Helpers/ServiceHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Helpers/ServiceHelpers.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/MauiProgram.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Models/AppModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Models/AppModels.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Models/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Models/Constants.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Fonts/TitilliumWeb-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Fonts/TitilliumWeb-SemiBold.ttf -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnadd.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnandroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnandroid.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnapple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnapple.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnback.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnclear.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnclose.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnfilter.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnhamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnhamburger.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icninfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icninfo.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnsearch.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnsettings.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnshare.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnsort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnsort.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnwindows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/icnwindows.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/iphonemock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Images/iphonemock.png -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Raw/loadinganim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Raw/loadinganim.json -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Services/AppSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Services/AppSettingsService.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Services/IApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Services/IApiService.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Services/ISettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Services/ISettingsService.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Services/SnpptsApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Services/SnpptsApiService.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/SnpptsApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/SnpptsApp.csproj -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/AboutPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/AboutPageViewModel.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/AddNewSnippetPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/AddNewSnippetPageViewModel.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/ImageViewerPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/ImageViewerPageViewModel.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/SettingsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/SettingsPageViewModel.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/SnippetDetailsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/SnippetDetailsPageViewModel.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/StartPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/ViewModels/StartPageViewModel.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/AboutPage.xaml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/AboutPage.xaml.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/AddNewSnippetsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/AddNewSnippetsPage.xaml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/AddNewSnippetsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/AddNewSnippetsPage.xaml.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/ImageViewerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/ImageViewerPage.xaml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/ImageViewerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/ImageViewerPage.xaml.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/SnippetDetailsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/SnippetDetailsPage.xaml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/SnippetDetailsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/SnippetDetailsPage.xaml.cs -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/StartPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/StartPage.xaml -------------------------------------------------------------------------------- /Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/StartPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/maui-app-starter-project/SnpptsApp/SnpptsApp/Views/StartPage.xaml.cs -------------------------------------------------------------------------------- /Maui.Snppts/snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/snippets -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API.sln -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/.DS_Store -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Controllers/SnpptsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Controllers/SnpptsController.cs -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Models/Snppts_Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Models/Snppts_Author.cs -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Models/Snppts_Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Models/Snppts_Category.cs -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Models/Snppts_Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Models/Snppts_Image.cs -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Models/Snppts_Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Models/Snppts_Result.cs -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Models/Snppts_Snippet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Models/Snppts_Snippet.cs -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Program.cs -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Snppts_API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/Snppts_API.csproj -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/WeatherForecast.cs -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/appsettings.Development.json -------------------------------------------------------------------------------- /Maui.Snppts/webapi-app/Snppts_API/Snppts_API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/Maui.Snppts/webapi-app/Snppts_API/Snppts_API/appsettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiSamples/HEAD/README.md --------------------------------------------------------------------------------