Jaison T John
Jaison T John

Reputation: 1

Accessibility - voiceover not working in swipeviewitems within a bindablelayout - Xamarin.forms iOS

The UI and commands are working fine both in iOS and android. But the accessibility Voice over is not working in iOS.. Also the talkback is working fine for both the swipeitems in Android.

 <SwipeView>
        <SwipeView.RightItems>
            <SwipeItems>
                <SwipeItem Text="Favorite"
                           IconImageSource="favorite.png"
                           BackgroundColor="LightGreen"
                           Command="{Binding Command1}" />
                <SwipeItem Text="Delete"
                           IconImageSource="delete.png"
                           BackgroundColor="LightPink"
                           Command="{Binding Command2}"/>
            </SwipeItems>
        </SwipeView.RightItems>
        <!-- Content -->
        <Grid HeightRequest="60"
              WidthRequest="300"
              BackgroundColor="LightGray">
            <Label Text="Swipe right"
                   HorizontalOptions="Center"
                   VerticalOptions="Center" />
        </Grid>
    </SwipeView>

Upvotes: 0

Views: 93

Answers (0)

Related Questions