|
65 | 65 | Value="True" /> |
66 | 66 | </Style> |
67 | 67 |
|
| 68 | + <Style x:Key="SettingsEntryStyle" |
| 69 | + TargetType="{x:Type Entry}" |
| 70 | + BasedOn="{StaticResource EntryStyle}"> |
| 71 | + <Setter Property="Margin" |
| 72 | + Value="12, 0" /> |
| 73 | + </Style> |
| 74 | + |
| 75 | + <Style x:Key="SettingsUwpEntryStyle" |
| 76 | + TargetType="{x:Type Entry}" |
| 77 | + BasedOn="{StaticResource UwpEntryStyle}"> |
| 78 | + <Setter Property="Margin" |
| 79 | + Value="12, 0" /> |
| 80 | + </Style> |
| 81 | + |
68 | 82 | <Style x:Key="HeaderLabelStyle" |
69 | 83 | TargetType="{x:Type Label}"> |
70 | 84 | <Setter Property="FontFamily" |
|
169 | 183 | <Entry.Style> |
170 | 184 | <OnPlatform |
171 | 185 | x:TypeArguments="Style" |
172 | | - iOS="{StaticResource EntryStyle}" |
173 | | - Android="{StaticResource EntryStyle}" |
174 | | - WinPhone="{StaticResource UwpEntryStyle}"/> |
| 186 | + iOS="{StaticResource SettingsEntryStyle}" |
| 187 | + Android="{StaticResource SettingsEntryStyle}" |
| 188 | + WinPhone="{StaticResource SettingsUwpEntryStyle}"/> |
175 | 189 | </Entry.Style> |
176 | 190 | </Entry> |
177 | 191 | </StackLayout> |
|
226 | 240 | <Entry.Style> |
227 | 241 | <OnPlatform |
228 | 242 | x:TypeArguments="Style" |
229 | | - iOS="{StaticResource EntryStyle}" |
230 | | - Android="{StaticResource EntryStyle}" |
231 | | - WinPhone="{StaticResource UwpEntryStyle}"/> |
| 243 | + iOS="{StaticResource SettingsEntryStyle}" |
| 244 | + Android="{StaticResource SettingsEntryStyle}" |
| 245 | + WinPhone="{StaticResource SettingsUwpEntryStyle}"/> |
232 | 246 | </Entry.Style> |
233 | 247 | </Entry> |
234 | 248 | <Label |
|
240 | 254 | <Entry.Style> |
241 | 255 | <OnPlatform |
242 | 256 | x:TypeArguments="Style" |
243 | | - iOS="{StaticResource EntryStyle}" |
244 | | - Android="{StaticResource EntryStyle}" |
245 | | - WinPhone="{StaticResource UwpEntryStyle}"/> |
| 257 | + iOS="{StaticResource SettingsEntryStyle}" |
| 258 | + Android="{StaticResource SettingsEntryStyle}" |
| 259 | + WinPhone="{StaticResource SettingsUwpEntryStyle}"/> |
246 | 260 | </Entry.Style> |
247 | 261 | </Entry> |
248 | 262 | <Button |
|
0 commit comments