├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── MyCoffeeApp.Shared ├── Models │ └── Coffee.cs └── MyCoffeeApp.Shared.csproj ├── MyCoffeeApp.WebAPI ├── CoffeeEndpoints.cs ├── Data │ └── MyCoffeeAppWebAPIContext.cs ├── MyCoffeeApp.WebAPI.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── MyCoffeeApp.sln ├── MyCoffeeApp ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── Cells │ ├── CoffeeCard.xaml │ ├── CoffeeCard.xaml.cs │ ├── CoffeeDataTemplateSelector.cs │ ├── SpecialCell.xaml │ └── SpecialCell.xaml.cs ├── GlobalUsings.cs ├── Helpers │ ├── FontAwesome.cs │ ├── IEnvironment.cs │ ├── Settings.cs │ └── TheTheme.cs ├── MauiProgram.cs ├── MyCoffeeApp.csproj ├── NewPage1.xaml ├── NewPage1.xaml.cs ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── Environment.cs │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ ├── Resources │ │ │ └── values │ │ │ │ └── colors.xml │ │ └── Toaster.cs │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Entitlements.Debug.plist │ │ ├── Entitlements.Release.plist │ │ ├── Environment.cs │ │ ├── Info.plist │ │ ├── Program.cs │ │ └── Toaster.cs │ ├── Tizen │ │ ├── Environment.cs │ │ ├── Main.cs │ │ ├── Toaster.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Environment.cs │ │ ├── Package.appxmanifest │ │ ├── Toaster.cs │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Environment.cs │ │ ├── Info.plist │ │ ├── Program.cs │ │ └── Toaster.cs ├── Properties │ └── launchSettings.json ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ ├── appiconfg.svg │ │ └── coffee_icon.png │ ├── Fonts │ │ ├── CustomFont.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ ├── fabrands.ttf │ │ ├── faregular.ttf │ │ └── fasolid.ttf │ ├── Images │ │ ├── coffeebag.png │ │ └── dotnet_bot.svg │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ ├── coffee_splash.png │ │ └── splash.svg │ └── Styles │ │ ├── CoffeeAppStyles.xaml │ │ └── CoffeeAppStyles.xaml.cs ├── Services │ ├── CoffeeService.cs │ ├── ICoffeeService.cs │ ├── IToast.cs │ └── InternetCoffeeService.cs ├── ViewModels │ ├── CoffeeEquipmentViewModel.cs │ ├── ImageCacheViewModel.cs │ ├── InternetCoffee │ │ └── InternetCoffeeViewModel.cs │ ├── MyCoffee │ │ ├── AddMyCoffeeViewModel.cs │ │ └── MyCoffeeViewModel.cs │ └── ViewModelBase.cs └── Views │ ├── AnimationPage.xaml │ ├── AnimationPage.xaml.cs │ ├── CoffeeEquipmentCVPage.xaml │ ├── CoffeeEquipmentCVPage.xaml.cs │ ├── CoffeeEquipmentPage.xaml │ ├── CoffeeEquipmentPage.xaml.cs │ ├── ImageCachePage.xaml │ ├── ImageCachePage.xaml.cs │ ├── InternetCoffee │ ├── InternetCoffeePage.xaml │ └── InternetCoffeePage.xaml.cs │ ├── LoginPage.xaml │ ├── LoginPage.xaml.cs │ ├── MyCoffee │ ├── AddMyCoffeePage.xaml │ ├── AddMyCoffeePage.xaml.cs │ ├── MyCoffeeDetailsPage.xaml │ ├── MyCoffeeDetailsPage.xaml.cs │ ├── MyStoredCoffeePage.xaml │ └── MyStoredCoffeePage.xaml.cs │ ├── RegistrationPage.xaml │ ├── RegistrationPage.xaml.cs │ ├── SettingsPage.xaml │ └── SettingsPage.xaml.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MyCoffeeApp.Shared/Models/Coffee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp.Shared/Models/Coffee.cs -------------------------------------------------------------------------------- /MyCoffeeApp.Shared/MyCoffeeApp.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp.Shared/MyCoffeeApp.Shared.csproj -------------------------------------------------------------------------------- /MyCoffeeApp.WebAPI/CoffeeEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp.WebAPI/CoffeeEndpoints.cs -------------------------------------------------------------------------------- /MyCoffeeApp.WebAPI/Data/MyCoffeeAppWebAPIContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp.WebAPI/Data/MyCoffeeAppWebAPIContext.cs -------------------------------------------------------------------------------- /MyCoffeeApp.WebAPI/MyCoffeeApp.WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp.WebAPI/MyCoffeeApp.WebAPI.csproj -------------------------------------------------------------------------------- /MyCoffeeApp.WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp.WebAPI/Program.cs -------------------------------------------------------------------------------- /MyCoffeeApp.WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp.WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /MyCoffeeApp.WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp.WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /MyCoffeeApp.WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp.WebAPI/appsettings.json -------------------------------------------------------------------------------- /MyCoffeeApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp.sln -------------------------------------------------------------------------------- /MyCoffeeApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/App.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/App.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/AppShell.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/AppShell.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Cells/CoffeeCard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Cells/CoffeeCard.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Cells/CoffeeCard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Cells/CoffeeCard.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Cells/CoffeeDataTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Cells/CoffeeDataTemplateSelector.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Cells/SpecialCell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Cells/SpecialCell.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Cells/SpecialCell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Cells/SpecialCell.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/GlobalUsings.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Helpers/FontAwesome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Helpers/FontAwesome.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Helpers/IEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Helpers/IEnvironment.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Helpers/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Helpers/Settings.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Helpers/TheTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Helpers/TheTheme.cs -------------------------------------------------------------------------------- /MyCoffeeApp/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/MauiProgram.cs -------------------------------------------------------------------------------- /MyCoffeeApp/MyCoffeeApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/MyCoffeeApp.csproj -------------------------------------------------------------------------------- /MyCoffeeApp/NewPage1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/NewPage1.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/NewPage1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/NewPage1.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Android/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Android/Environment.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Android/Toaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Android/Toaster.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/MacCatalyst/Entitlements.Debug.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/MacCatalyst/Entitlements.Debug.plist -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/MacCatalyst/Entitlements.Release.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/MacCatalyst/Entitlements.Release.plist -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/MacCatalyst/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/MacCatalyst/Environment.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/MacCatalyst/Toaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/MacCatalyst/Toaster.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Tizen/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Tizen/Environment.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Tizen/Toaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Tizen/Toaster.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Windows/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Windows/Environment.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Windows/Toaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Windows/Toaster.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/iOS/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/iOS/Environment.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Platforms/iOS/Toaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Platforms/iOS/Toaster.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/AppIcon/coffee_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/AppIcon/coffee_icon.png -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Fonts/CustomFont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Fonts/CustomFont.ttf -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Fonts/fabrands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Fonts/fabrands.ttf -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Fonts/faregular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Fonts/faregular.ttf -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Fonts/fasolid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Fonts/fasolid.ttf -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Images/coffeebag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Images/coffeebag.png -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Splash/coffee_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Splash/coffee_splash.png -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Styles/CoffeeAppStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Styles/CoffeeAppStyles.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Resources/Styles/CoffeeAppStyles.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Resources/Styles/CoffeeAppStyles.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Services/CoffeeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Services/CoffeeService.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Services/ICoffeeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Services/ICoffeeService.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Services/IToast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Services/IToast.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Services/InternetCoffeeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Services/InternetCoffeeService.cs -------------------------------------------------------------------------------- /MyCoffeeApp/ViewModels/CoffeeEquipmentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/ViewModels/CoffeeEquipmentViewModel.cs -------------------------------------------------------------------------------- /MyCoffeeApp/ViewModels/ImageCacheViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/ViewModels/ImageCacheViewModel.cs -------------------------------------------------------------------------------- /MyCoffeeApp/ViewModels/InternetCoffee/InternetCoffeeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/ViewModels/InternetCoffee/InternetCoffeeViewModel.cs -------------------------------------------------------------------------------- /MyCoffeeApp/ViewModels/MyCoffee/AddMyCoffeeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/ViewModels/MyCoffee/AddMyCoffeeViewModel.cs -------------------------------------------------------------------------------- /MyCoffeeApp/ViewModels/MyCoffee/MyCoffeeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/ViewModels/MyCoffee/MyCoffeeViewModel.cs -------------------------------------------------------------------------------- /MyCoffeeApp/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Views/AnimationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/AnimationPage.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Views/AnimationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/AnimationPage.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Views/CoffeeEquipmentCVPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/CoffeeEquipmentCVPage.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Views/CoffeeEquipmentCVPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/CoffeeEquipmentCVPage.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Views/CoffeeEquipmentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/CoffeeEquipmentPage.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Views/CoffeeEquipmentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/CoffeeEquipmentPage.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Views/ImageCachePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/ImageCachePage.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Views/ImageCachePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/ImageCachePage.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Views/InternetCoffee/InternetCoffeePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/InternetCoffee/InternetCoffeePage.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Views/InternetCoffee/InternetCoffeePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/InternetCoffee/InternetCoffeePage.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Views/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/LoginPage.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Views/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/LoginPage.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Views/MyCoffee/AddMyCoffeePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/MyCoffee/AddMyCoffeePage.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Views/MyCoffee/AddMyCoffeePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/MyCoffee/AddMyCoffeePage.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Views/MyCoffee/MyCoffeeDetailsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/MyCoffee/MyCoffeeDetailsPage.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Views/MyCoffee/MyCoffeeDetailsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/MyCoffee/MyCoffeeDetailsPage.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Views/MyCoffee/MyStoredCoffeePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/MyCoffee/MyStoredCoffeePage.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Views/MyCoffee/MyStoredCoffeePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/MyCoffee/MyStoredCoffeePage.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Views/RegistrationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/RegistrationPage.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Views/RegistrationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/RegistrationPage.xaml.cs -------------------------------------------------------------------------------- /MyCoffeeApp/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /MyCoffeeApp/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/MyCoffeeApp/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MyMauiCoffeeApp/HEAD/README.md --------------------------------------------------------------------------------