123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- * @format
- * @flow
- */
- 'use strict';
- const registerGeneratedViewConfig = require('../../Utilities/registerGeneratedViewConfig');
- const requireNativeComponent = require('../../ReactNative/requireNativeComponent');
- import type {HostComponent} from '../../Renderer/shims/ReactNativeTypes';
- import type {ScrollViewNativeProps} from './ScrollViewNativeComponentType';
- const AndroidHorizontalScrollViewViewConfig = {
- uiViewClassName: 'AndroidHorizontalScrollView',
- bubblingEventTypes: {},
- directEventTypes: {},
- validAttributes: {
- decelerationRate: true,
- disableIntervalMomentum: true,
- endFillColor: {process: require('../../StyleSheet/processColor')},
- fadingEdgeLength: true,
- nestedScrollEnabled: true,
- overScrollMode: true,
- pagingEnabled: true,
- persistentScrollbar: true,
- scrollEnabled: true,
- scrollPerfTag: true,
- sendMomentumEvents: true,
- showsHorizontalScrollIndicator: true,
- snapToEnd: true,
- snapToInterval: true,
- snapToStart: true,
- snapToOffsets: true,
- contentOffset: true,
- },
- };
- let AndroidHorizontalScrollViewNativeComponent;
- if (global.RN$Bridgeless) {
- registerGeneratedViewConfig(
- 'AndroidHorizontalScrollView',
- AndroidHorizontalScrollViewViewConfig,
- );
- AndroidHorizontalScrollViewNativeComponent = 'AndroidHorizontalScrollView';
- } else {
- AndroidHorizontalScrollViewNativeComponent = requireNativeComponent<ScrollViewNativeProps>(
- 'AndroidHorizontalScrollView',
- );
- }
- export default ((AndroidHorizontalScrollViewNativeComponent: any): HostComponent<ScrollViewNativeProps>);
|