summaryrefslogtreecommitdiffhomepage
path: root/app/components/CustomScrollbars.android.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/CustomScrollbars.android.js')
-rw-r--r--app/components/CustomScrollbars.android.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/app/components/CustomScrollbars.android.js b/app/components/CustomScrollbars.android.js
deleted file mode 100644
index dadc462234..0000000000
--- a/app/components/CustomScrollbars.android.js
+++ /dev/null
@@ -1,33 +0,0 @@
-// @flow
-
-import * as React from 'react';
-import { View, Component } from 'reactxp';
-
-type Props = {
- autoHide: boolean,
- thumbInset: { x: number, y: number },
- children?: React.Node,
-};
-
-type State = {
- canScroll: boolean,
- showScrollIndicators: boolean,
-};
-
-export default class CustomScrollbars extends Component<Props, State> {
- static defaultProps = {
- autoHide: true,
- thumbInset: { x: 2, y: 2 },
- };
-
- state = {
- canScroll: false,
- showScrollIndicators: true,
- };
-
- render() {
- const { autoHide: _autoHide, thumbInset: _thumbInset, children, ...otherProps } = this.props;
-
- return <View {...otherProps}>{children}</View>;
- }
-}