ButtonStyles.xaml 427 B

1234567891011
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ResourceDictionary xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="Styles.ButtonStyles">
  5. <Style x:Key="SharedButtonStyle" TargetType="Button">
  6. <Setter Property="BackgroundColor" Value="Red" />
  7. <Setter Property="Rotation" Value="45" />
  8. </Style>
  9. </ResourceDictionary>