├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CraftUI.sln ├── README.md ├── global.json └── src ├── CraftUI.Demo.Application ├── Cities │ └── CityVm.cs ├── Common │ ├── Interfaces │ │ ├── Infrastructure │ │ │ ├── IDisplayService.cs │ │ │ ├── INavigationService.cs │ │ │ └── IToastService.cs │ │ └── Services │ │ │ ├── ICityService.cs │ │ │ └── ICountryService.cs │ └── LinkMenuItem.cs ├── Countries │ └── CountryVm.cs └── CraftUI.Demo.Application.csproj ├── CraftUI.Demo.Infrastructure ├── CraftUI.Demo.Infrastructure.csproj ├── DependencyInjection.cs ├── Displays │ └── DisplayService.cs ├── Navigation │ └── NavigationService.cs └── Toasts │ └── ToastService.cs ├── CraftUI.Demo.Services ├── Cities │ └── CityService.cs ├── Countries │ └── CountryService.cs ├── CraftUI.Demo.Services.csproj └── DependencyInjection.cs ├── CraftUI.Demo ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── CraftUI.Demo.csproj ├── MauiProgram.cs ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ └── Program.cs │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs ├── Presentation │ ├── Common │ │ ├── ContentPageBase.cs │ │ ├── RouteConstants.cs │ │ └── ViewModelBase.cs │ └── Pages │ │ ├── Controls │ │ ├── Buttons │ │ │ ├── ButtonPage.xaml │ │ │ ├── ButtonPage.xaml.cs │ │ │ └── ButtonPageViewModel.cs │ │ ├── ControlsList.xaml │ │ ├── ControlsList.xaml.cs │ │ ├── ControlsListViewModel.cs │ │ ├── DatePickers │ │ │ ├── DatePickerPage.xaml │ │ │ ├── DatePickerPage.xaml.cs │ │ │ └── DatePickerPageViewModel.cs │ │ ├── Entries │ │ │ ├── EntryPage.xaml │ │ │ ├── EntryPage.xaml.cs │ │ │ ├── EntryPageViewModel.cs │ │ │ └── EntryPageViewModelValidator.cs │ │ ├── Pickers │ │ │ ├── PickerMultipleSelectionPage.xaml │ │ │ ├── PickerMultipleSelectionPage.xaml.cs │ │ │ ├── PickerPage.xaml │ │ │ ├── PickerPage.xaml.cs │ │ │ ├── PickerPageViewModel.cs │ │ │ ├── PickerSingleSelectionPage.xaml │ │ │ └── PickerSingleSelectionPage.xaml.cs │ │ └── ProgressBars │ │ │ ├── ProgressBarPage.xaml │ │ │ ├── ProgressBarPage.xaml.cs │ │ │ └── ProgressBarPageViewModel.cs │ │ ├── Settings │ │ ├── SettingsPage.xaml │ │ ├── SettingsPage.xaml.cs │ │ └── SettingsPageViewModel.cs │ │ └── UseCases │ │ ├── UseCasesList.xaml │ │ ├── UseCasesList.xaml.cs │ │ └── UseCasesListViewModel.cs ├── Properties │ └── launchSettings.json └── Resources │ ├── AppIcon │ ├── appicon.svg │ └── appiconfg.svg │ ├── Fonts │ ├── OpenSans-Regular.ttf │ └── OpenSans-Semibold.ttf │ ├── Images │ ├── chevron_bottom.svg │ ├── close.svg │ ├── demo_code.svg │ ├── demo_cog.svg │ ├── demo_date_picker.svg │ ├── demo_hand_click.svg │ ├── demo_info.svg │ ├── demo_input.svg │ ├── demo_new_window.svg │ ├── demo_picker.svg │ ├── demo_progress_bar.svg │ ├── demo_use_cases.svg │ └── demo_work_in_progress.svg │ ├── Raw │ └── AboutAssets.txt │ ├── Splash │ └── splash.svg │ └── Styles │ ├── Buttons.xaml │ ├── Colors.xaml │ ├── CustomControls.xaml │ ├── Layouts.xaml │ └── Styles.xaml └── CraftUI.Library.Maui ├── Common ├── Extensions │ ├── BaseLabelExtension.cs │ └── ObjectExtension.cs ├── Helpers │ ├── ResourceHelper.cs │ └── ViewHelper.cs ├── LabelBase.xaml ├── LabelBase.xaml.cs ├── Resources │ └── ColorResources.cs └── SelectionList.cs ├── Controls ├── CfButton.xaml ├── CfButton.xaml.cs ├── CfDatePicker.xaml ├── CfDatePicker.xaml.cs ├── CfDatePickerInternal.cs ├── CfEntry.xaml ├── CfEntry.xaml.cs ├── CfPicker.xaml ├── CfPicker.xaml.cs ├── CfPickerMultipleSelection.xaml ├── CfPickerMultipleSelection.xaml.cs ├── CfPickerSingleSelection.xaml ├── CfPickerSingleSelection.xaml.cs └── ProgressBars │ ├── CfProgressBar.cs │ └── CfProgressBarHandler.cs ├── Converters ├── SelectedItemsContainsConverter.cs └── ShowErrorConverter.cs ├── CraftUI.Library.Maui.csproj ├── DependencyInjection.cs ├── MarkupExtensions └── GutterMarkupExtension.cs └── Popups ├── CfCollectionMultiSelectionPopup.xaml ├── CfCollectionMultiSelectionPopup.xaml.cs ├── CfCollectionSingleSelectionPopup.xaml └── CfCollectionSingleSelectionPopup.xaml.cs /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/.gitignore -------------------------------------------------------------------------------- /CraftUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/CraftUI.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/global.json -------------------------------------------------------------------------------- /src/CraftUI.Demo.Application/Cities/CityVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Application/Cities/CityVm.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Application/Common/Interfaces/Infrastructure/IDisplayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Application/Common/Interfaces/Infrastructure/IDisplayService.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Application/Common/Interfaces/Infrastructure/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Application/Common/Interfaces/Infrastructure/INavigationService.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Application/Common/Interfaces/Infrastructure/IToastService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Application/Common/Interfaces/Infrastructure/IToastService.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Application/Common/Interfaces/Services/ICityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Application/Common/Interfaces/Services/ICityService.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Application/Common/Interfaces/Services/ICountryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Application/Common/Interfaces/Services/ICountryService.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Application/Common/LinkMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Application/Common/LinkMenuItem.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Application/Countries/CountryVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Application/Countries/CountryVm.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Application/CraftUI.Demo.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Application/CraftUI.Demo.Application.csproj -------------------------------------------------------------------------------- /src/CraftUI.Demo.Infrastructure/CraftUI.Demo.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Infrastructure/CraftUI.Demo.Infrastructure.csproj -------------------------------------------------------------------------------- /src/CraftUI.Demo.Infrastructure/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Infrastructure/DependencyInjection.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Infrastructure/Displays/DisplayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Infrastructure/Displays/DisplayService.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Infrastructure/Navigation/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Infrastructure/Navigation/NavigationService.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Infrastructure/Toasts/ToastService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Infrastructure/Toasts/ToastService.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Services/Cities/CityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Services/Cities/CityService.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Services/Countries/CountryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Services/Countries/CountryService.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo.Services/CraftUI.Demo.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Services/CraftUI.Demo.Services.csproj -------------------------------------------------------------------------------- /src/CraftUI.Demo.Services/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo.Services/DependencyInjection.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/App.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/App.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/AppShell.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/AppShell.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/CraftUI.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/CraftUI.Demo.csproj -------------------------------------------------------------------------------- /src/CraftUI.Demo/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/MauiProgram.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/MacCatalyst/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/MacCatalyst/Entitlements.plist -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/CraftUI.Demo/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Common/ContentPageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Common/ContentPageBase.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Common/RouteConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Common/RouteConstants.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Common/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Common/ViewModelBase.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Buttons/ButtonPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Buttons/ButtonPage.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Buttons/ButtonPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Buttons/ButtonPage.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Buttons/ButtonPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Buttons/ButtonPageViewModel.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/ControlsList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/ControlsList.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/ControlsList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/ControlsList.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/ControlsListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/ControlsListViewModel.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/DatePickers/DatePickerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/DatePickers/DatePickerPage.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/DatePickers/DatePickerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/DatePickers/DatePickerPage.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/DatePickers/DatePickerPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/DatePickers/DatePickerPageViewModel.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Entries/EntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Entries/EntryPage.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Entries/EntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Entries/EntryPage.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Entries/EntryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Entries/EntryPageViewModel.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Entries/EntryPageViewModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Entries/EntryPageViewModelValidator.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerMultipleSelectionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerMultipleSelectionPage.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerMultipleSelectionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerMultipleSelectionPage.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerPage.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerPage.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerPageViewModel.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerSingleSelectionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerSingleSelectionPage.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerSingleSelectionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/Pickers/PickerSingleSelectionPage.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/ProgressBars/ProgressBarPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/ProgressBars/ProgressBarPage.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/ProgressBars/ProgressBarPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/ProgressBars/ProgressBarPage.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Controls/ProgressBars/ProgressBarPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Controls/ProgressBars/ProgressBarPageViewModel.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Settings/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Settings/SettingsPage.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Settings/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Settings/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/Settings/SettingsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/Settings/SettingsPageViewModel.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/UseCases/UseCasesList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/UseCases/UseCasesList.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/UseCases/UseCasesList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/UseCases/UseCasesList.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Presentation/Pages/UseCases/UseCasesListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Presentation/Pages/UseCases/UseCasesListViewModel.cs -------------------------------------------------------------------------------- /src/CraftUI.Demo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/chevron_bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/chevron_bottom.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/close.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/demo_code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/demo_code.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/demo_cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/demo_cog.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/demo_date_picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/demo_date_picker.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/demo_hand_click.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/demo_hand_click.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/demo_info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/demo_info.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/demo_input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/demo_input.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/demo_new_window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/demo_new_window.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/demo_picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/demo_picker.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/demo_progress_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/demo_progress_bar.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/demo_use_cases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/demo_use_cases.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Images/demo_work_in_progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Images/demo_work_in_progress.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Styles/Buttons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Styles/Buttons.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Styles/CustomControls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Styles/CustomControls.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Styles/Layouts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Styles/Layouts.xaml -------------------------------------------------------------------------------- /src/CraftUI.Demo/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Demo/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Common/Extensions/BaseLabelExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Common/Extensions/BaseLabelExtension.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Common/Extensions/ObjectExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Common/Extensions/ObjectExtension.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Common/Helpers/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Common/Helpers/ResourceHelper.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Common/Helpers/ViewHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Common/Helpers/ViewHelper.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Common/LabelBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Common/LabelBase.xaml -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Common/LabelBase.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Common/LabelBase.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Common/Resources/ColorResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Common/Resources/ColorResources.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Common/SelectionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Common/SelectionList.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfButton.xaml -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfButton.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfDatePicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfDatePicker.xaml -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfDatePicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfDatePicker.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfDatePickerInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfDatePickerInternal.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfEntry.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfEntry.xaml -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfEntry.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfEntry.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfPicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfPicker.xaml -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfPicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfPicker.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfPickerMultipleSelection.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfPickerMultipleSelection.xaml -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfPickerMultipleSelection.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfPickerMultipleSelection.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfPickerSingleSelection.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfPickerSingleSelection.xaml -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/CfPickerSingleSelection.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/CfPickerSingleSelection.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/ProgressBars/CfProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/ProgressBars/CfProgressBar.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Controls/ProgressBars/CfProgressBarHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Controls/ProgressBars/CfProgressBarHandler.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Converters/SelectedItemsContainsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Converters/SelectedItemsContainsConverter.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Converters/ShowErrorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Converters/ShowErrorConverter.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/CraftUI.Library.Maui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/CraftUI.Library.Maui.csproj -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/DependencyInjection.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/MarkupExtensions/GutterMarkupExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/MarkupExtensions/GutterMarkupExtension.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Popups/CfCollectionMultiSelectionPopup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Popups/CfCollectionMultiSelectionPopup.xaml -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Popups/CfCollectionMultiSelectionPopup.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Popups/CfCollectionMultiSelectionPopup.xaml.cs -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Popups/CfCollectionSingleSelectionPopup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Popups/CfCollectionSingleSelectionPopup.xaml -------------------------------------------------------------------------------- /src/CraftUI.Library.Maui/Popups/CfCollectionSingleSelectionPopup.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanArnas/CraftUI/HEAD/src/CraftUI.Library.Maui/Popups/CfCollectionSingleSelectionPopup.xaml.cs --------------------------------------------------------------------------------