MobileEntry.cs 343 B

123456789101112131415
  1. using Xamarin.Forms;
  2. namespace InABox.Mobile
  3. {
  4. public class MobileEntry : Entry
  5. {
  6. public MobileEntry()
  7. {
  8. TextColor = Color.Black;
  9. BackgroundColor = Color.LightYellow;
  10. FontSize = Device.GetNamedSize(NamedSize.Small, this);
  11. PlaceholderColor = Color.Gray;
  12. }
  13. }
  14. }