create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
28 lines • 817 B
Flow
/**
* Copyright (c) Nicolas Gallagher.
* 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.
*
* @flow
*/
import type { ColorValue } from '../../types';
import type { ViewProps } from '../View';
import type { Node } from 'React';
import View from '../View';
import React from 'react';
type RefreshControlProps = { ...ViewProps,
colors?: Array<ColorValue>,
enabled?: boolean,
onRefresh?: () => void,
progressBackgroundColor?: ColorValue,
progressViewOffset?: number,
refreshing: boolean,
size?: 0 | 1,
tintColor?: ColorValue,
title?: string,
titleColor?: ColorValue,
};
declare function RefreshControl(props: RefreshControlProps): Node;
export default RefreshControl;