[Tabs] [iOS] Tabs don't swipe even with swipeEnabled = true after the first swipe
msl2000 opened this issue · 2 comments
msl2000 commented
Make sure to check the demo app(s) for sample usage
Make sure to check the existing issues in this repository
If the demo apps cannot help and there is no issue for your problem, tell us about it
Please, ensure your title is less than 63 characters long and starts with a capital
letter.
Which platform(s) does your issue occur on?
- ios
Please, provide the following version numbers that your issue occurs with:
CLI: 8.2.3
Cross-platform modules: 8.2.3
Runtime(s):
"@nativescript/android": "^8.2.2",
"@nativescript/ios": "~8.3.0",
Plugin(s):Tabs version "^7.0.22"
Please, tell us how to recreate the issue in as much detail as possible.
I simply used the example code in the documentation. The swipe works perfectly fine on Android but not on iOS.
After the first swipe to another tab, I cannot swipe to other tabs anymore. It does the pull animation but doesnt make the switch.
Is there any code involved?
<MDTabs selectedIndex="1">
<MDTabStrip>
<MDTabStripItem>
<Label text="Home"></Label>
</MDTabStripItem>
<MDTabStripItem class="special">
<Label text="Account"></Label>
</MDTabStripItem>
<MDTabStripItem class="special">
<Label text="Search"></Label>
</MDTabStripItem>
</MDTabStrip>
<MDTabContentItem>
<GridLayout>
<Label text="Home Page" class="h2 text-center"></Label>
</GridLayout>
</MDTabContentItem>
<MDTabContentItem>
<GridLayout>
<Label text="Account Page" class="h2 text-center"></Label>
</GridLayout>
</MDTabContentItem>
<MDTabContentItem>
<GridLayout>
<Label text="Search Page" class="h2 text-center"></Label>
</GridLayout>
</MDTabContentItem>
</MDTabs>
farfromrefug commented
@msl2000 should be fixed in 7.0.23
msl2000 commented
Perfect. This works.