From 79d6ed87e1a0a8fa73c53eb2373b771c0aa48b8c Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 18 Aug 2017 17:06:09 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/button.html | 2 +- releases/next/docs/flatlist.html | 63 +----------------------- releases/next/docs/maskedviewios.html | 3 +- releases/next/docs/picker.html | 6 +-- releases/next/docs/sectionlist.html | 43 +--------------- releases/next/docs/snapshotviewios.html | 2 +- releases/next/docs/statusbar.html | 6 +-- releases/next/docs/tabbarios.html | 4 +- releases/next/docs/viewpagerandroid.html | 12 ++--- releases/next/docs/virtualizedlist.html | 32 +----------- 10 files changed, 20 insertions(+), 153 deletions(-) diff --git a/releases/next/docs/button.html b/releases/next/docs/button.html index 3836a6b13ce..ba1ec8b315d 100644 --- a/releases/next/docs/button.html +++ b/releases/next/docs/button.html @@ -10,7 +10,7 @@ Or, take a look at the ="Learn More" color="#841584" accessibilityLabel="Learn more about this purple button" -/>

Props #

accessibilityLabel?: ?string #

Text to display for blindness accessibility features

color?: ?string #

Color of the text (iOS), or background color of the button (Android)

disabled?: ?boolean #

If true, disable all interactions for this component.

onPress: () => any #

Handler to be called when the user taps the button

testID?: ?string #

Used to locate this view in end-to-end tests.

title: string #

Text to display inside the button

Improve this page by sending a pull request!

← PrevNext →

SnapshotViewIOS #

Props #

onSnapshotReady?: Function #

testIdentifier?: string #

Improve this page by sending a pull request!

SnapshotViewIOS #

Props #

onSnapshotReady?: function #

testIdentifier?: string #

Improve this page by sending a pull request!

TabBarIOS #

Props #

barTintColor?: $FlowFixMe #

Background color of the tab bar

itemPositioning?: literal | literal | literal #

Specifies tab bar item positioning. Available values are: +TabBarIOS

TabBarIOS #

Props #

barTintColor?: color #

Background color of the tab bar

itemPositioning?: enum('fill', 'center', 'auto') #

Specifies tab bar item positioning. Available values are: - fill - distributes items across the entire width of the tab bar - center - centers item in the available tab bar space - auto (default) - distributes items dynamically according to the user interface idiom. In a horizontally compact environment (e.g. iPhone 5) this value defaults to fill, in a horizontally regular one (e.g. iPad) -it defaults to center.

style?: $FlowFixMe #

tintColor?: $FlowFixMe #

Color of the currently selected tab icon

translucent?: boolean #

A Boolean value that indicates whether the tab bar is translucent

unselectedItemTintColor?: $FlowFixMe #

Color of unselected tab icons. Available since iOS 10.

unselectedTintColor?: $FlowFixMe #

Color of text on unselected tabs

Improve this page by sending a pull request!