按钮看起来像框架

时间:2018-07-12 11:00:23

标签: xamarin xamarin.forms xamarin.ios xamarin.android

我正在使用xamarin形式,我有一个带有文本和图像的框架,但是该框架没有波纹效果,可以让按钮看起来像框架吗?

这是我的例子: enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用FlexButton NuGet Package。您可以设置BorderRadius,具有RippleEffect,添加图像。

<flex:FlexButton
    WidthRequest="76"
    HeightRequest="76"
    CornerRadius="38"
    HorizontalOptions="Center"
    Icon="lightbulb.png"
    ForegroundColor="#ffffff"
    HighlightForegroundColor="#49516F"
    BackgroundColor="#6279B8"
    HighlightBackgroundColor="#8EA4D2" />