We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12cd033 + 8ac6236 commit 596c664Copy full SHA for 596c664
src/tabs/tabs.ios.ts
@@ -94,6 +94,13 @@ class UIPageViewControllerImpl extends UIPageViewController {
94
return handler;
95
}
96
97
+ public accessibilityScroll(direction: UIAccessibilityScrollDirection): boolean {
98
+ if (this._owner.get()?.swipeEnabled ?? true) {
99
+ return super.accessibilityScroll(direction);
100
+ }
101
+ return false;
102
103
+
104
public viewDidLoad(): void {
105
const owner = this._owner.get();
106
0 commit comments