Hello,
I just tried the SfButton with a white background color. Unfortunately, this doesn't show me any kind of ripple effect.
Also, I have tried putting visual="Material" but this too doesn't work.
I am currently using version 17.4.0.50.
Thanks.
Paul
Here's my code:
<buttons:SfButton
Grid.Row="1"
BackgroundColor="{StaticResource White-FF}"
BorderColor="{StaticResource Black-34}"
BorderWidth="1"
Command="{Binding PaletteListViewCommand}"
Visual="Material"
HeightRequest="38"
Text="test">
<buttons:SfButton.Content>
<Grid>
<Label
Margin="10,0,0,0"
Text="{Binding DeviceConfig.TicUserPalettes.ticUserPaletteDefault}"
TextColor="{StaticResource Black-66}"
VerticalOptions="Center" />
<Label
Grid.Column="1"
Margin="0,0,15,0"
FontSize="15"
HorizontalOptions="End"
Style="{StaticResource LabelFontAwesomeStyle}"
Text="{x:Static utils:Icons.TriangleRight}"
TextColor="Black"
VerticalOptions="Center" />
</Grid>
</buttons:SfButton.Content>
</buttons:SfButton>