我正在为应用程序使用Xamarin.forms版本3.0.0.561731
。问题是,当单击一个按钮时,像左上角的对象之类的另一个按钮出现了几秒钟,这很烦人,我一直在搜索花了几个小时,尝试了发现的东西,但是没有运气。
我尝试升级到最新的xamarin.forms版本,还尝试将其降级到2.4.0,但问题仍然存在。
请指导我摆脱点击/单击按钮时的视觉效果问题。
<Button BorderRadius="5" Text="Continue" HorizontalOptions='FillAndExpand' BackgroundColor="#1976D2" TextColor="White" Command="{Binding ContinueFormCommand}">
<Button.FontSize>
<OnIdiom x:TypeArguments="x:Double">
<OnIdiom.Phone>
<OnPlatform x:TypeArguments="x:Double" iOS="13" Android="15" WinPhone="30"/>
</OnIdiom.Phone>
<OnIdiom.Tablet>
<OnPlatform x:TypeArguments="x:Double" iOS="13" Android="15" WinPhone="30"/>
</OnIdiom.Tablet>
</OnIdiom>
</Button.FontSize>
<Button.HeightRequest>
<OnIdiom x:TypeArguments="x:Double">
<OnIdiom.Phone>
<OnPlatform x:TypeArguments="x:Double" iOS="13" Android="45" WinPhone="30"/>
</OnIdiom.Phone>
<OnIdiom.Tablet>
<OnPlatform x:TypeArguments="x:Double" iOS="13" Android="15" WinPhone="30"/>
</OnIdiom.Tablet>
</OnIdiom>
</Button.HeightRequest>
</Button>