diff --git a/components/tabs/Tabs.tsx b/components/tabs/Tabs.tsx index 11d706098..2c5d32ede 100644 --- a/components/tabs/Tabs.tsx +++ b/components/tabs/Tabs.tsx @@ -196,7 +196,7 @@ export class Tabs extends React.PureComponent { if (this.scrollView && this.scrollView._component) { const { scrollTo } = this.scrollView._component; // tslint:disable-next-line:no-unused-expression - scrollTo && scrollTo({ x: offset, animated }); + scrollTo && scrollTo.call(this.scrollView._component, { x: offset, animated }); } } };