voice over and talkback doesnt work

we make a application but voice over and talkback doesnt work.

TalkBack on Android and VoiceOver for iOS also require screen elements to be clickable and readable.

I have not found any examples for this topic.

Could you help me by sending a sample piece of code or sample application about this topic?

<Panel Padding="10,0" HitTestMode="LocalVisualAndChildren" ux:Name="menuDisc">
  <ScrollView ux:Name="scrollView" Margin="0,0,0,0" ScrollPosition="0">
    <WhileActive>
      <Set scrollView.ScrollPosition="0,0" />
    </WhileActive>
    <Grid RowCount="3" ColumnCount="3" CellSpacing="10" Margin="0,10,0,0">
      <Each Items="{homeItems}">
        <Panel HitTestMode="LocalVisualAndChildren">
          <kablo.HomeIcon Clicked="{choosePage}" Text="{name}" Desc="{desc}" IconImage="{itemIcon}" Margin="0" />
        </Panel>
      </Each>
    </Grid>
  </ScrollView>
</Panel>

thank you

Hi,

TalkBack and VoiceOver will likely not work with custom GL components. Your best bet would be to put your whole application inside of a NativeViewHost and only use native components.

It could be of help if you took a look at how things are implemented in fuselibs-public. It might happen to be so that you’ll need to write your own native implementation of components, or extend the controls found in fuselibs for them to support the accessibility features.

Hope this helps!