this issue only for android it's working for iOS
<Container>
<Header hasTabs/>
<Tabs>
<Tab heading={ <TabHeading><Icon name="camera" /><Text>Camera</Text></TabHeading>}>
<List dataArray={ItemList} horizontal={true}
renderRow={(item) =>
< HorizontalCell data={item} >
}>
</List>
</Tab>
<Tab heading={ <TabHeading><Text>No Icon</Text></TabHeading>}>
<Tab2 />
</Tab>
<Tab heading={ <TabHeading><Icon name="apps" /></TabHeading>}>
<Tab3 />
</Tab>
</Tabs>
</Container>

red boxes are horizontal cells when I try to move its goes to 2nd tab
for iOS it's worked
@sachithamadhupa You can either lock the Tabs swipe using locked prop in Tabs or check with pointer-events/touches for both the scrollable contents i.e, cells and Tabs
yep it's working but, it's better to fix in a good way, @shivrajkumar k thanx for your answer
@sachithamadhupa Better way/the correct way would be through pointer events.
yep thanks @shivrajkumar :) 馃挴
Most helpful comment
@sachithamadhupa Better way/the correct way would be through pointer events.