├── .gitignore ├── Art ├── 01-OpenVS.png ├── 02-SelectNetMauiTemplate.png ├── 03-ConfigureProject.png ├── 04-SelectNetFrameworkVersion.png ├── 05-SolutionStructure.png ├── 06-AddNewFolder.png ├── 07-AddNewItem.png ├── 08-AddNewContentPage.png ├── 09-ViewsFolderContent.png ├── 10-AddExistingItem.png ├── 11-AddImage.png ├── 12-NewResource.png ├── 13-InitialContent.png ├── 14-RecipeListViewXAMLCode.png ├── 15-InitialContent.png ├── 16-RecipeListViewCSharpCode.png ├── 17-SelectFramework.png ├── 18-AppRunning.png ├── 19-AppRunningWindows.png ├── 20-StyleColors.png ├── 21-AppRunningInLightMode.png ├── 22-EnablingDarkMode.png ├── 23-AppRunningInDarkMode.png ├── 24-RoundImageCorners.png ├── 25-DownloadMDIFont.png ├── 26-MDIFontFile.png ├── 27-IconFontToCSharpCode.png ├── 28-MDIHelperClassCode.png ├── 29-IconFontClassCode.png ├── 30-AddFontFile.png ├── 31-IconButton.png ├── 32-ImprovingUI.png ├── 33-RenameView.png ├── 34-RenameXaml.png ├── 35-RenameClass.png ├── 36-RenameAppShell.png ├── 37-ManageNuGetPackage.png ├── 38-InstallCommunityToolkitMVVM.png ├── 39-AddModels.png ├── 40-AddServices.png ├── 41-AddViewModels.png ├── 42-AddViews.png ├── 43-RecipeCollection.png ├── 44-RecipeDetail.png ├── 45-ImprovedRecipeCollection.png ├── 46-ManageNuGetPackage.png ├── 47-AddSQLiteNetPCLNuGetPackage.png ├── 48-AddSQLitePCLRawBundleGreenNuGetPackage.png ├── 49-AddSQLitePCLRawBundleProviderCdeclNuGetPackage.png ├── 50-AddConstantsClass.png ├── 51-AddBasicTableClass.png ├── 52-AddLocalDbServiceSupport.png ├── 53-NewFunctionality.png ├── 54-NewData.png ├── 55-GetDataFromLocalDB.png ├── 56-SettingsSupport.png ├── 57-HamburgerMenu.png ├── 58-ExpandedHamburgerMenu.png ├── 59-SettingsView.png ├── 60-SettingsSaved.png ├── 61-LocalRecipes.png ├── 62-NewSettings.png └── 63-InternetRecipes.png ├── Finish ├── README.md ├── RefreshingRecipes.sln └── RefreshingRecipes │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Helpers │ ├── Constants.cs │ └── IconFont.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Models │ ├── BasicTable.cs │ └── Recipe.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 │ ├── RefreshingRecipes.csproj │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ └── materialdesignicons-webfont.ttf │ ├── Images │ │ ├── dotnet_bot.svg │ │ └── smoothie.png │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ ├── Services │ ├── ILocalDbService.cs │ ├── IRecipeService.cs │ ├── LocalDbService.cs │ └── RecipeService.cs │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── RecipeCollectionViewModel.cs │ ├── RecipeDetailViewModel.cs │ └── SettingsViewModel.cs │ └── Views │ ├── RecipeCollectionView.xaml │ ├── RecipeCollectionView.xaml.cs │ ├── RecipeDetailView.xaml │ ├── RecipeDetailView.xaml.cs │ ├── SettingsView.xaml │ └── SettingsView.xaml.cs ├── Part1-GettingStarted ├── README-es.md └── README.md ├── Part2-UIDesign ├── README-es.md ├── README.md ├── RefreshingRecipes.sln └── RefreshingRecipes │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.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 │ ├── RefreshingRecipes.csproj │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ ├── dotnet_bot.svg │ │ └── smoothie.png │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ └── Views │ ├── RecipeListView.xaml │ └── RecipeListView.xaml.cs ├── Part3-MVVM ├── README-es.md ├── README.md ├── RefreshingRecipes.sln └── RefreshingRecipes │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Helpers │ └── IconFont.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.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 │ ├── RefreshingRecipes.csproj │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ └── materialdesignicons-webfont.ttf │ ├── Images │ │ ├── dotnet_bot.svg │ │ └── smoothie.png │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ └── Views │ ├── RecipeListView.xaml │ └── RecipeListView.xaml.cs ├── Part4-LocalStorage ├── README-es.md ├── README.md ├── RefreshingRecipes.sln └── RefreshingRecipes │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Helpers │ └── IconFont.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Models │ └── Recipe.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 │ ├── RefreshingRecipes.csproj │ ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ └── materialdesignicons-webfont.ttf │ ├── Images │ │ ├── dotnet_bot.svg │ │ └── smoothie.png │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml │ ├── Services │ ├── IRecipeService.cs │ └── RecipeService.cs │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── RecipeCollectionViewModel.cs │ └── RecipeDetailViewModel.cs │ └── Views │ ├── RecipeCollectionView.xaml │ ├── RecipeCollectionView.xaml.cs │ ├── RecipeDetailView.xaml │ └── RecipeDetailView.xaml.cs ├── README.md ├── Resources └── smoothie.png └── Translations ├── README.md └── es └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | .idea/ 13 | 14 | # User-specific files (MonoDevelop/Xamarin Studio) 15 | *.userprefs 16 | 17 | # Mono auto generated files 18 | mono_crash.* 19 | 20 | # Build results 21 | [Dd]ebug/ 22 | [Dd]ebugPublic/ 23 | [Rr]elease/ 24 | [Rr]eleases/ 25 | x64/ 26 | x86/ 27 | [Aa][Rr][Mm]/ 28 | [Aa][Rr][Mm]64/ 29 | bld/ 30 | [Bb]in/ 31 | [Oo]bj/ 32 | [Ll]og/ 33 | [Ll]ogs/ 34 | 35 | # Visual Studio 2015/2017 cache/options directory 36 | .vs/ 37 | # Uncomment if you have tasks that create the project's static files in wwwroot 38 | #wwwroot/ 39 | 40 | # Visual Studio 2017 auto generated files 41 | Generated\ Files/ 42 | 43 | # MSTest test Results 44 | [Tt]est[Rr]esult*/ 45 | [Bb]uild[Ll]og.* 46 | 47 | # NUnit 48 | *.VisualState.xml 49 | TestResult.xml 50 | nunit-*.xml 51 | 52 | # Build Results of an ATL Project 53 | [Dd]ebugPS/ 54 | [Rr]eleasePS/ 55 | dlldata.c 56 | 57 | # Benchmark Results 58 | BenchmarkDotNet.Artifacts/ 59 | 60 | # .NET Core 61 | project.lock.json 62 | project.fragment.lock.json 63 | artifacts/ 64 | 65 | # StyleCop 66 | StyleCopReport.xml 67 | 68 | # Files built by Visual Studio 69 | *_i.c 70 | *_p.c 71 | *_h.h 72 | *.ilk 73 | *.meta 74 | *.obj 75 | *.iobj 76 | *.pch 77 | *.pdb 78 | *.ipdb 79 | *.pgc 80 | *.pgd 81 | *.rsp 82 | *.sbr 83 | *.tlb 84 | *.tli 85 | *.tlh 86 | *.tmp 87 | *.tmp_proj 88 | *_wpftmp.csproj 89 | *.log 90 | *.vspscc 91 | *.vssscc 92 | .builds 93 | *.pidb 94 | *.svclog 95 | *.scc 96 | 97 | # Chutzpah Test files 98 | _Chutzpah* 99 | 100 | # Visual C++ cache files 101 | ipch/ 102 | *.aps 103 | *.ncb 104 | *.opendb 105 | *.opensdf 106 | *.sdf 107 | *.cachefile 108 | *.VC.db 109 | *.VC.VC.opendb 110 | 111 | # Visual Studio profiler 112 | *.psess 113 | *.vsp 114 | *.vspx 115 | *.sap 116 | 117 | # Visual Studio Trace Files 118 | *.e2e 119 | 120 | # TFS 2012 Local Workspace 121 | $tf/ 122 | 123 | # Guidance Automation Toolkit 124 | *.gpState 125 | 126 | # ReSharper is a .NET coding add-in 127 | _ReSharper*/ 128 | *.[Rr]e[Ss]harper 129 | *.DotSettings.user 130 | 131 | # TeamCity is a build add-in 132 | _TeamCity* 133 | 134 | # DotCover is a Code Coverage Tool 135 | *.dotCover 136 | 137 | # AxoCover is a Code Coverage Tool 138 | .axoCover/* 139 | !.axoCover/settings.json 140 | 141 | # Visual Studio code coverage results 142 | *.coverage 143 | *.coveragexml 144 | 145 | # NCrunch 146 | _NCrunch_* 147 | .*crunch*.local.xml 148 | nCrunchTemp_* 149 | 150 | # MightyMoose 151 | *.mm.* 152 | AutoTest.Net/ 153 | 154 | # Web workbench (sass) 155 | .sass-cache/ 156 | 157 | # Installshield output folder 158 | [Ee]xpress/ 159 | 160 | # DocProject is a documentation generator add-in 161 | DocProject/buildhelp/ 162 | DocProject/Help/*.HxT 163 | DocProject/Help/*.HxC 164 | DocProject/Help/*.hhc 165 | DocProject/Help/*.hhk 166 | DocProject/Help/*.hhp 167 | DocProject/Help/Html2 168 | DocProject/Help/html 169 | 170 | # Click-Once directory 171 | publish/ 172 | 173 | # Publish Web Output 174 | *.[Pp]ublish.xml 175 | *.azurePubxml 176 | # Note: Comment the next line if you want to checkin your web deploy settings, 177 | # but database connection strings (with potential passwords) will be unencrypted 178 | *.pubxml 179 | *.publishproj 180 | 181 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 182 | # checkin your Azure Web App publish settings, but sensitive information contained 183 | # in these scripts will be unencrypted 184 | PublishScripts/ 185 | 186 | # NuGet Packages 187 | *.nupkg 188 | # NuGet Symbol Packages 189 | *.snupkg 190 | # The packages folder can be ignored because of Package Restore 191 | **/[Pp]ackages/* 192 | # except build/, which is used as an MSBuild target. 193 | !**/[Pp]ackages/build/ 194 | # Uncomment if necessary however generally it will be regenerated when needed 195 | #!**/[Pp]ackages/repositories.config 196 | # NuGet v3's project.json files produces more ignorable files 197 | *.nuget.props 198 | *.nuget.targets 199 | 200 | # Microsoft Azure Build Output 201 | csx/ 202 | *.build.csdef 203 | 204 | # Microsoft Azure Emulator 205 | ecf/ 206 | rcf/ 207 | 208 | # Windows Store app package directories and files 209 | AppPackages/ 210 | BundleArtifacts/ 211 | Package.StoreAssociation.xml 212 | _pkginfo.txt 213 | *.appx 214 | *.appxbundle 215 | *.appxupload 216 | 217 | # Visual Studio cache files 218 | # files ending in .cache can be ignored 219 | *.[Cc]ache 220 | # but keep track of directories ending in .cache 221 | !?*.[Cc]ache/ 222 | 223 | # Others 224 | ClientBin/ 225 | ~$* 226 | *~ 227 | *.dbmdl 228 | *.dbproj.schemaview 229 | *.jfm 230 | *.pfx 231 | *.publishsettings 232 | orleans.codegen.cs 233 | 234 | # Including strong name files can present a security risk 235 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 236 | #*.snk 237 | 238 | # Since there are multiple workflows, uncomment next line to ignore bower_components 239 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 240 | #bower_components/ 241 | 242 | # RIA/Silverlight projects 243 | Generated_Code/ 244 | 245 | # Backup & report files from converting an old project file 246 | # to a newer Visual Studio version. Backup files are not needed, 247 | # because we have git ;-) 248 | _UpgradeReport_Files/ 249 | Backup*/ 250 | UpgradeLog*.XML 251 | UpgradeLog*.htm 252 | ServiceFabricBackup/ 253 | *.rptproj.bak 254 | 255 | # SQL Server files 256 | *.mdf 257 | *.ldf 258 | *.ndf 259 | 260 | # Business Intelligence projects 261 | *.rdl.data 262 | *.bim.layout 263 | *.bim_*.settings 264 | *.rptproj.rsuser 265 | *- [Bb]ackup.rdl 266 | *- [Bb]ackup ([0-9]).rdl 267 | *- [Bb]ackup ([0-9][0-9]).rdl 268 | 269 | # Microsoft Fakes 270 | FakesAssemblies/ 271 | 272 | # GhostDoc plugin setting file 273 | *.GhostDoc.xml 274 | 275 | # Node.js Tools for Visual Studio 276 | .ntvs_analysis.dat 277 | node_modules/ 278 | 279 | # Visual Studio 6 build log 280 | *.plg 281 | 282 | # Visual Studio 6 workspace options file 283 | *.opt 284 | 285 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 286 | *.vbw 287 | 288 | # Visual Studio LightSwitch build output 289 | **/*.HTMLClient/GeneratedArtifacts 290 | **/*.DesktopClient/GeneratedArtifacts 291 | **/*.DesktopClient/ModelManifest.xml 292 | **/*.Server/GeneratedArtifacts 293 | **/*.Server/ModelManifest.xml 294 | _Pvt_Extensions 295 | 296 | # Paket dependency manager 297 | .paket/paket.exe 298 | paket-files/ 299 | 300 | # FAKE - F# Make 301 | .fake/ 302 | 303 | # CodeRush personal settings 304 | .cr/personal 305 | 306 | # Python Tools for Visual Studio (PTVS) 307 | __pycache__/ 308 | *.pyc 309 | 310 | # Cake - Uncomment if you are using it 311 | # tools/** 312 | # !tools/packages.config 313 | 314 | # Tabs Studio 315 | *.tss 316 | 317 | # Telerik's JustMock configuration file 318 | *.jmconfig 319 | 320 | # BizTalk build output 321 | *.btp.cs 322 | *.btm.cs 323 | *.odx.cs 324 | *.xsd.cs 325 | 326 | # OpenCover UI analysis results 327 | OpenCover/ 328 | 329 | # Azure Stream Analytics local run output 330 | ASALocalRun/ 331 | 332 | # MSBuild Binary and Structured Log 333 | *.binlog 334 | 335 | # NVidia Nsight GPU debugger configuration file 336 | *.nvuser 337 | 338 | # MFractors (Xamarin productivity tool) working folder 339 | .mfractor/ 340 | 341 | # Local History for Visual Studio 342 | .localhistory/ 343 | 344 | # BeatPulse healthcheck temp database 345 | healthchecksdb 346 | 347 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 348 | MigrationBackup/ 349 | 350 | # Ionide (cross platform F# VS Code tools) working folder 351 | .ionide/ -------------------------------------------------------------------------------- /Art/01-OpenVS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/01-OpenVS.png -------------------------------------------------------------------------------- /Art/02-SelectNetMauiTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/02-SelectNetMauiTemplate.png -------------------------------------------------------------------------------- /Art/03-ConfigureProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/03-ConfigureProject.png -------------------------------------------------------------------------------- /Art/04-SelectNetFrameworkVersion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/04-SelectNetFrameworkVersion.png -------------------------------------------------------------------------------- /Art/05-SolutionStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/05-SolutionStructure.png -------------------------------------------------------------------------------- /Art/06-AddNewFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/06-AddNewFolder.png -------------------------------------------------------------------------------- /Art/07-AddNewItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/07-AddNewItem.png -------------------------------------------------------------------------------- /Art/08-AddNewContentPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/08-AddNewContentPage.png -------------------------------------------------------------------------------- /Art/09-ViewsFolderContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/09-ViewsFolderContent.png -------------------------------------------------------------------------------- /Art/10-AddExistingItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/10-AddExistingItem.png -------------------------------------------------------------------------------- /Art/11-AddImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/11-AddImage.png -------------------------------------------------------------------------------- /Art/12-NewResource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/12-NewResource.png -------------------------------------------------------------------------------- /Art/13-InitialContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/13-InitialContent.png -------------------------------------------------------------------------------- /Art/14-RecipeListViewXAMLCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/14-RecipeListViewXAMLCode.png -------------------------------------------------------------------------------- /Art/15-InitialContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/15-InitialContent.png -------------------------------------------------------------------------------- /Art/16-RecipeListViewCSharpCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/16-RecipeListViewCSharpCode.png -------------------------------------------------------------------------------- /Art/17-SelectFramework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/17-SelectFramework.png -------------------------------------------------------------------------------- /Art/18-AppRunning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/18-AppRunning.png -------------------------------------------------------------------------------- /Art/19-AppRunningWindows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/19-AppRunningWindows.png -------------------------------------------------------------------------------- /Art/20-StyleColors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/20-StyleColors.png -------------------------------------------------------------------------------- /Art/21-AppRunningInLightMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/21-AppRunningInLightMode.png -------------------------------------------------------------------------------- /Art/22-EnablingDarkMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/22-EnablingDarkMode.png -------------------------------------------------------------------------------- /Art/23-AppRunningInDarkMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/23-AppRunningInDarkMode.png -------------------------------------------------------------------------------- /Art/24-RoundImageCorners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/24-RoundImageCorners.png -------------------------------------------------------------------------------- /Art/25-DownloadMDIFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/25-DownloadMDIFont.png -------------------------------------------------------------------------------- /Art/26-MDIFontFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/26-MDIFontFile.png -------------------------------------------------------------------------------- /Art/27-IconFontToCSharpCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/27-IconFontToCSharpCode.png -------------------------------------------------------------------------------- /Art/28-MDIHelperClassCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/28-MDIHelperClassCode.png -------------------------------------------------------------------------------- /Art/29-IconFontClassCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/29-IconFontClassCode.png -------------------------------------------------------------------------------- /Art/30-AddFontFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/30-AddFontFile.png -------------------------------------------------------------------------------- /Art/31-IconButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/31-IconButton.png -------------------------------------------------------------------------------- /Art/32-ImprovingUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/32-ImprovingUI.png -------------------------------------------------------------------------------- /Art/33-RenameView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/33-RenameView.png -------------------------------------------------------------------------------- /Art/34-RenameXaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/34-RenameXaml.png -------------------------------------------------------------------------------- /Art/35-RenameClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/35-RenameClass.png -------------------------------------------------------------------------------- /Art/36-RenameAppShell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/36-RenameAppShell.png -------------------------------------------------------------------------------- /Art/37-ManageNuGetPackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/37-ManageNuGetPackage.png -------------------------------------------------------------------------------- /Art/38-InstallCommunityToolkitMVVM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/38-InstallCommunityToolkitMVVM.png -------------------------------------------------------------------------------- /Art/39-AddModels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/39-AddModels.png -------------------------------------------------------------------------------- /Art/40-AddServices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/40-AddServices.png -------------------------------------------------------------------------------- /Art/41-AddViewModels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/41-AddViewModels.png -------------------------------------------------------------------------------- /Art/42-AddViews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/42-AddViews.png -------------------------------------------------------------------------------- /Art/43-RecipeCollection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/43-RecipeCollection.png -------------------------------------------------------------------------------- /Art/44-RecipeDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/44-RecipeDetail.png -------------------------------------------------------------------------------- /Art/45-ImprovedRecipeCollection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/45-ImprovedRecipeCollection.png -------------------------------------------------------------------------------- /Art/46-ManageNuGetPackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/46-ManageNuGetPackage.png -------------------------------------------------------------------------------- /Art/47-AddSQLiteNetPCLNuGetPackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/47-AddSQLiteNetPCLNuGetPackage.png -------------------------------------------------------------------------------- /Art/48-AddSQLitePCLRawBundleGreenNuGetPackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/48-AddSQLitePCLRawBundleGreenNuGetPackage.png -------------------------------------------------------------------------------- /Art/49-AddSQLitePCLRawBundleProviderCdeclNuGetPackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/49-AddSQLitePCLRawBundleProviderCdeclNuGetPackage.png -------------------------------------------------------------------------------- /Art/50-AddConstantsClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/50-AddConstantsClass.png -------------------------------------------------------------------------------- /Art/51-AddBasicTableClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/51-AddBasicTableClass.png -------------------------------------------------------------------------------- /Art/52-AddLocalDbServiceSupport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/52-AddLocalDbServiceSupport.png -------------------------------------------------------------------------------- /Art/53-NewFunctionality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/53-NewFunctionality.png -------------------------------------------------------------------------------- /Art/54-NewData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/54-NewData.png -------------------------------------------------------------------------------- /Art/55-GetDataFromLocalDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/55-GetDataFromLocalDB.png -------------------------------------------------------------------------------- /Art/56-SettingsSupport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/56-SettingsSupport.png -------------------------------------------------------------------------------- /Art/57-HamburgerMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/57-HamburgerMenu.png -------------------------------------------------------------------------------- /Art/58-ExpandedHamburgerMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/58-ExpandedHamburgerMenu.png -------------------------------------------------------------------------------- /Art/59-SettingsView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/59-SettingsView.png -------------------------------------------------------------------------------- /Art/60-SettingsSaved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/60-SettingsSaved.png -------------------------------------------------------------------------------- /Art/61-LocalRecipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/61-LocalRecipes.png -------------------------------------------------------------------------------- /Art/62-NewSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/62-NewSettings.png -------------------------------------------------------------------------------- /Art/63-InternetRecipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebeam7/SummerCoding/49d9a25490784428e8809369356938463579cd08/Art/63-InternetRecipes.png -------------------------------------------------------------------------------- /Finish/README.md: -------------------------------------------------------------------------------- 1 | This is the final code version after completing the 4-step tutorial. -------------------------------------------------------------------------------- /Finish/RefreshingRecipes.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31611.283 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RefreshingRecipes", "RefreshingRecipes\RefreshingRecipes.csproj", "{435D3059-1CA1-4836-891C-5AC7943D652D}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {435D3059-1CA1-4836-891C-5AC7943D652D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {435D3059-1CA1-4836-891C-5AC7943D652D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {435D3059-1CA1-4836-891C-5AC7943D652D}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 17 | {435D3059-1CA1-4836-891C-5AC7943D652D}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {435D3059-1CA1-4836-891C-5AC7943D652D}.Release|Any CPU.Build.0 = Release|Any CPU 19 | {435D3059-1CA1-4836-891C-5AC7943D652D}.Release|Any CPU.Deploy.0 = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(SolutionProperties) = preSolution 22 | HideSolutionNode = FALSE 23 | EndGlobalSection 24 | GlobalSection(ExtensibilityGlobals) = postSolution 25 | SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572} 26 | EndGlobalSection 27 | EndGlobal 28 | -------------------------------------------------------------------------------- /Finish/RefreshingRecipes/App.xaml: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Finish/RefreshingRecipes/App.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace RefreshingRecipes; 2 | 3 | public partial class App : Application 4 | { 5 | public App() 6 | { 7 | InitializeComponent(); 8 | 9 | MainPage = new AppShell(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Finish/RefreshingRecipes/AppShell.xaml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /Finish/RefreshingRecipes/AppShell.xaml.cs: -------------------------------------------------------------------------------- 1 | using RefreshingRecipes.Views; 2 | 3 | namespace RefreshingRecipes; 4 | 5 | public partial class AppShell : Shell 6 | { 7 | public AppShell() 8 | { 9 | InitializeComponent(); 10 | 11 | Routing.RegisterRoute(nameof(RecipeDetailView), typeof(RecipeDetailView)); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Finish/RefreshingRecipes/Helpers/Constants.cs: -------------------------------------------------------------------------------- 1 | namespace RefreshingRecipes.Helpers 2 | { 3 | public static class Constants 4 | { 5 | public const string DatabaseFilename = "RecipesDb-v1_0.db3"; 6 | public static string DatabasePath => 7 | Path.Combine(FileSystem.AppDataDirectory, DatabaseFilename); 8 | 9 | public const string OnlineModeKey = "online_mode"; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Finish/RefreshingRecipes/MainPage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | 11 | 12 | 17 | 18 |