diff --git a/BookAStar/BookAStar/Model/Settings/SignatureSettings.cs b/BookAStar/BookAStar/Model/Settings/SignatureSettings.cs new file mode 100644 index 00000000..d355339d --- /dev/null +++ b/BookAStar/BookAStar/Model/Settings/SignatureSettings.cs @@ -0,0 +1,35 @@ +using System.Collections.Generic; +using System.Linq; +using Xamarin.Forms; + +namespace BookAStar.Model.Settings +{ + class SignatureSettings + { + public static readonly Dictionary ColorPairs = new Dictionary + { + { "", Color.Accent }, + { "Aqua", Color.Aqua }, + { "Black", Color.Black }, + { "Blue", Color.Blue }, + { "Fuchsia", Color.Fuchsia }, + { "Gray", Color.Gray }, + { "Green", Color.Green }, + { "Lime", Color.Lime }, + { "Maroon", Color.Maroon }, + { "Navy", Color.Navy }, + { "Olive", Color.Olive }, + { "Pink", Color.Pink }, + { "Purple", Color.Purple }, + { "Red", Color.Red }, + { "Silver", Color.Silver }, + { "Teal", Color.Teal }, + { "White", Color.White }, + { "Yellow", Color.Yellow }, + }; + + public static List Colors => ColorPairs.Values.ToList(); + + public static List ColorNames => ColorPairs.Keys.ToList(); + } +} diff --git a/BookAStar/BookAStar/Views/MDSigningView.xaml b/BookAStar/BookAStar/Views/MDSigningView.xaml new file mode 100644 index 00000000..4c5e34a1 --- /dev/null +++ b/BookAStar/BookAStar/Views/MDSigningView.xaml @@ -0,0 +1,19 @@ + + + + + +