Repository: davidortinau/VisualChallenge Branch: master Commit: 1a4a83be841c Files: 45 Total size: 15.1 MB Directory structure: gitextract_94w1nrjg/ ├── .gitignore ├── LICENSE.txt ├── NuGet.config ├── README.md ├── VisualChallenge/ │ ├── VisualChallenge/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppShell.xaml │ │ ├── AppShell.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── VisualChallenge.csproj │ │ ├── VisualChallengePage.xaml │ │ └── VisualChallengePage.xaml.cs │ ├── VisualChallenge.Android/ │ │ ├── Assets/ │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties/ │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources/ │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable/ │ │ │ │ └── launch_screen.axml │ │ │ ├── layout/ │ │ │ │ ├── Tabbar.axml │ │ │ │ └── Toolbar.axml │ │ │ ├── mipmap-anydpi-v26/ │ │ │ │ ├── icon.xml │ │ │ │ └── icon_round.xml │ │ │ └── values/ │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── VisualChallenge.Android.csproj │ └── VisualChallenge.iOS/ │ ├── AppDelegate.cs │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Resources/ │ │ └── LaunchScreen.storyboard │ └── VisualChallenge.iOS.csproj ├── VisualChallenge.sln └── nuget/ ├── Xamarin.Forms.4.0.0.293082-pre8.nupkg ├── Xamarin.Forms.AppLinks.4.0.0.293082-pre8.nupkg ├── Xamarin.Forms.Maps.4.0.0.293082-pre8.nupkg ├── Xamarin.Forms.Maps.GTK.4.0.0.293082-pre8.nupkg ├── Xamarin.Forms.Maps.WPF.4.0.0.293082-pre8.nupkg ├── Xamarin.Forms.Pages.4.0.0.293082-pre8.nupkg ├── Xamarin.Forms.Pages.Azure.4.0.0.293082-pre8.nupkg ├── Xamarin.Forms.Platform.GTK.4.0.0.293082-pre8.nupkg ├── Xamarin.Forms.Platform.WPF.4.0.0.293082-pre8.nupkg └── Xamarin.Forms.Visual.Material.4.0.0.293082-pre8.nupkg ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # Autosave files *~ # build [Oo]bj/ [Bb]in/ packages/ TestResults/ # globs Makefile.in *.DS_Store *.sln.cache *.suo *.cache *.pidb *.userprefs *.usertasks config.log config.make config.status aclocal.m4 install-sh autom4te.cache/ *.user *.tar.gz tarballs/ test-results/ Thumbs.db .vs/ # Mac bundle stuff *.dmg *.app # resharper *_Resharper.* *.Resharper # dotCover *.dotCover # nuget !nuget/**/* !/nuget/**/* !/nuget/ ================================================ FILE: LICENSE.txt ================================================ MIT License Copyright (c) Microsoft Corporation. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE ================================================ FILE: NuGet.config ================================================ ================================================ FILE: README.md ================================================ # Visual Challenge To take a single page design from a previous project that should look the same on iOS and Android, and attempt to recreate it using the latest Visual feature of Xamarin.Forms. ## Challenge Quick Start This is testing **Visual**, not your prowess as a mobile developer. I want to learn how successful you are when using this new feature. Or not. 1. Fork this repository 2. Choose a single page design from a previous or current project to recreate from scratch. The more real world the better. Plus, you can reuse assets. 3. Open `VisualChallengePage.xaml`. Take an hour (or more if you really want to) and build that screen. Making it super functional doesn't matter, just how it looks and feels. 4. Submit a pull request of your progress back to this repository. Include: - a screenshot of iOS and Android - your feedback on what went well, and what didn't - what you would like to see us doing differently in support of this goal: same design on iOS and Android # What is Visual? Visual is a new way to declare the "visual" design system you want rendering your native controls. By default, controls are renderered the way Apple and Google created them. With Visual, you can choose Material as the design system that will then render the same on iOS and Android. For example, this sample app sets the Visual preference on the application `Shell` and it is propogated to all controls in the application. ``` ``` Any control may override this propogation by declaring its own Visual preference: ```