From acdef2b72f0c4992b16497c8a65e451190edb0fe Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 25 Mar 2016 22:54:03 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/switch.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/releases/next/docs/switch.html b/releases/next/docs/switch.html index 0ab77af9b69..57d08f845ad 100644 --- a/releases/next/docs/switch.html +++ b/releases/next/docs/switch.html @@ -1,4 +1,8 @@ -Switch – React Native | A framework for building native apps using React

Switch #

Edit on GitHub

Universal two-state toggle component.

Props #

disabled bool #

If true the user won't be able to toggle the switch. +Switch – React Native | A framework for building native apps using React

Switch #

Edit on GitHub

Renders a boolean input.

This is a controlled component that requires an onValueChange callback that +updates the value prop in order for the component to reflect user actions. +If the value prop is not updated, the component will continue to render +the supplied value prop instead of the expected result of any user actions.

@keyword checkbox +@keyword toggle

Props #

disabled bool #

If true the user won't be able to toggle the switch. Default value is false.

onValueChange function #

Invoked with the new value when the value changes.

testID string #

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

value bool #

The value of the switch. If true the switch will be turned on. Default value is false.

iosonTintColor color #

Background color when the switch is turned on.

iosthumbTintColor color #

Color of the foreground switch grip.

iostintColor color #

Background color when the switch is turned off.

Examples #

Edit on GitHub
'use strict';