maui-linux/Xamarin.Forms.Material.iOS/IMaterialEntryRenderer.cs

18 строки
333 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Foundation;
using UIKit;
namespace Xamarin.Forms.Material.iOS
{
public interface IMaterialEntryRenderer
{
Color TextColor { get; }
Color PlaceholderColor { get; }
Color BackgroundColor { get; }
string Placeholder { get; }
}
}