Home > database >  syncfusion xamarin form button control, click event not fired on IOS simulator but fired on my IPHON
syncfusion xamarin form button control, click event not fired on IOS simulator but fired on my IPHON

Time:10-07

I am using syncfusion xamarin form button control on my project, the click event didn't fire on the IOS simulator but fired on both my IPHONE and IPAD. anyone experienced this issue?

the XMAL is attached below,

<buttons:SfButton Padding="10"
                            x:Name="btnCamera"
                            Grid.Column="1"   
                            IsCheckable="False"
                            BackgroundColor="White"
                            BorderColor="Transparent"
                            BorderWidth="0"
                            HorizontalOptions="FillAndExpand" 
                            VerticalOptions="FillAndExpand"
                            Clicked="btnCamera_Clicked"
                            HasShadow="True"
                            CornerRadius="20">
            <buttons:SfButton.Content>
                <Image Source="Camera.png" 
                                    HeightRequest="45" 
                                    WidthRequest="45"
                                    HorizontalOptions="Center" 
                                    VerticalOptions="Center"/>
            </buttons:SfButton.Content>
        </buttons:SfButton>
        <buttons:SfButton Padding="10"
                            x:Name="btnImageFolder"
                            Grid.Column="3"   
                            IsCheckable="False"
                            BackgroundColor="White"
                            BorderColor="Transparent"
                            BorderWidth="0"
                            HorizontalOptions="FillAndExpand" 
                            VerticalOptions="FillAndExpand"
                            Clicked="btnImageFolder_Clicked"
                            HasShadow="True"
                            CornerRadius="20">
            <buttons:SfButton.Content>
                <Image Source="ImageFolder.png" 
                                    HeightRequest="45" 
                                    WidthRequest="45"
                                    HorizontalOptions="Center" 
                                    VerticalOptions="Center"/>
            </buttons:SfButton.Content>
        </buttons:SfButton>

CodePudding user response:

Query: StackOverflow : syncfusion xamarin form button control, click event not fired on IOS simulator but fired on my IPHONE

We are unable to replicate the reported issue on our side. We are prepared a sample based on the provided code snippet since the ButtonClick event is properly called on our side. We have prepared a sample and video for your reference. Sample

Please make sure you have added SfButtonRenderer for iOS in the AppDelagates.cs file. Refer to the below link,

Link: https://help.syncfusion.com/xamarin/button/gettingstarted#additional-step-for-ios

Please check and let us know once the problem was resolved on your side.

Regards, Ruba Shanmugam

  • Related