Skip to content

Instantly share code, notes, and snippets.

View yoyoys's full-sized avatar

Yoyo yoyoys

  • Top Cloud Technology
  • Taiwan
  • 11:50 (UTC +08:00)
View GitHub Profile
@yoyoys
yoyoys / LineEntry.cs
Created August 21, 2017 09:44 — forked from davidtavarez/LineEntry.cs
Xamarin.Forms Entry just with bottom border.
using Xamarin.Forms;
namespace YOUTNAMESPACE
{
public class LineEntry : Entry
{
public static readonly BindableProperty BorderColorProperty =
BindableProperty.Create<LineEntry, Color> (p => p.BorderColor, Color.Black);
public Color BorderColor {