Skip to content

Instantly share code, notes, and snippets.

@jesulink2514
Created February 28, 2019 03:50
Show Gist options
  • Save jesulink2514/bf7d2da8e78405739a044337d2bed96f to your computer and use it in GitHub Desktop.
Save jesulink2514/bf7d2da8e78405739a044337d2bed96f to your computer and use it in GitHub Desktop.
using NControl.Abstractions;
using NGraphics;
using Xamarin.Forms;
using Color = Xamarin.Forms.Color;
namespace DemoGradient.Controls
{
public static class ColorHelpers
{
public static NGraphics.Color ToNColor(this Color color)
{
return new NGraphics.Color(color.R, color.G, color.B, color.A);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment