Last active
January 15, 2016 10:42
-
-
Save hjerpbakk/155acdef9b350f5d9898 to your computer and use it in GitHub Desktop.
Example of enabling XAML compilation for an entire assembly in Xamarin.Forms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Xamarin.Forms.Xaml; | |
[assembly: XamlCompilation (XamlCompilationOptions.Compile)] | |
namespace GoldenRatioCalculator { | |
public class App : Application { | |
public const string ValueColorString = "#929292"; | |
public static readonly Color ValueColor = new Color(146D, 146D, 146D); | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment