2019-04-22 18:32:17 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<ResourceDictionary xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
x:Class="Bit.App.Styles.iOS">
|
2019-06-05 19:32:40 +03:00
|
|
|
<Style TargetType="Entry"
|
|
|
|
ApplyToDerivedTypes="True">
|
|
|
|
<Setter Property="PlaceholderColor"
|
|
|
|
Value="{StaticResource InputPlaceholderColor}" />
|
|
|
|
</Style>
|
|
|
|
<Style TargetType="Editor"
|
|
|
|
ApplyToDerivedTypes="True">
|
|
|
|
<Setter Property="PlaceholderColor"
|
|
|
|
Value="{StaticResource InputPlaceholderColor}" />
|
|
|
|
</Style>
|
2019-04-22 18:32:17 +03:00
|
|
|
</ResourceDictionary>
|