mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-04-26 23:05:55 +08:00
60 lines
1.7 KiB
JavaScript
60 lines
1.7 KiB
JavaScript
/* eslint-disable react/jsx-sort-props */
|
|
|
|
/**
|
|
* @flow
|
|
*/
|
|
|
|
import PropAnimating from './examples/PropAnimating';
|
|
import PropColor from './examples/PropColor';
|
|
import PropHidesWhenStopped from './examples/PropHidesWhenStopped';
|
|
import PropSize from './examples/PropSize';
|
|
import React from 'react';
|
|
import UIExplorer, { Description, DocItem, Section, storiesOf } from '../../ui-explorer';
|
|
|
|
const ActivityIndicatorScreen = () => (
|
|
<UIExplorer title="ActivityIndicator" url="1-components/ActivityIndicator">
|
|
<Description>Displays a customizable activity indicator</Description>
|
|
<Section title="Props">
|
|
<DocItem name="...View props" />
|
|
|
|
<DocItem
|
|
name="animating"
|
|
typeInfo="?boolean = true"
|
|
description="Whether to show the indicator or hide it."
|
|
example={{
|
|
render: () => <PropAnimating />
|
|
}}
|
|
/>
|
|
|
|
<DocItem
|
|
name="color"
|
|
typeInfo="?color = #1976D2"
|
|
description="The foreground color of the spinner."
|
|
example={{
|
|
render: () => <PropColor />
|
|
}}
|
|
/>
|
|
|
|
<DocItem
|
|
name="hidesWhenStopped"
|
|
typeInfo="?boolean = true"
|
|
description="Whether the indicator should hide when not animating."
|
|
example={{
|
|
render: () => <PropHidesWhenStopped />
|
|
}}
|
|
/>
|
|
|
|
<DocItem
|
|
name="size"
|
|
typeInfo="?enum('small', 'large') | number = 'small'"
|
|
description="Size of the indicator. Small has a height of 20px, large has a height of 36px."
|
|
example={{
|
|
render: () => <PropSize />
|
|
}}
|
|
/>
|
|
</Section>
|
|
</UIExplorer>
|
|
);
|
|
|
|
storiesOf('Components', module).add('ActivityIndicator', ActivityIndicatorScreen);
|