From a616a2d99d354626eca2767db1255fa1e8546011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Tue, 11 Jul 2017 11:07:25 -0700 Subject: [PATCH] Add Animated to list of APIs Summary: Also: move `Button` down to UI, and `StyleSheet` up to Basic Components. Closes https://github.com/facebook/react-native/pull/14405 Differential Revision: D5209838 Pulled By: hramos fbshipit-source-id: ffcd3a146a5c277f8d7e824c9a7595d2e7b720ae --- docs/ComponentsAndAPIs.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/docs/ComponentsAndAPIs.md b/docs/ComponentsAndAPIs.md index 44ba80cf8..80ffedaf8 100644 --- a/docs/ComponentsAndAPIs.md +++ b/docs/ComponentsAndAPIs.md @@ -45,8 +45,8 @@ Most apps will end up using one of these basic components. You'll want to get yo

Provides a scrolling container that can host multiple components and views.

-

Button

-

A basic button component for handling touches that should render nicely on any platform.

+

StyleSheet

+

Provides an abstraction layer similar to CSS stylesheets.

@@ -55,6 +55,10 @@ Most apps will end up using one of these basic components. You'll want to get yo Render common user interface controls on any platform using the following components. For platform specific components, keep reading.
+
+

Button

+

A basic button component for handling touches that should render nicely on any platform.

+

Picker

Renders the native picker component on iOS and Android.

@@ -188,6 +192,10 @@ These components may come in handy for certain applications. For an exhaustive l

Alert

Launches an alert dialog with the specified title and message.

+
+

Animated

+

A library for creating fluid, powerful animations that are easy to build and maintain.

+

CameraRoll

Provides access to the local camera roll / gallery.

@@ -224,10 +232,6 @@ These components may come in handy for certain applications. For an exhaustive l

StatusBar

Component to control the app status bar.

-
-

StyleSheet

-

Provides an abstraction layer similar to CSS stylesheets.

-

WebView

A component that renders web content in a native view.