From da771ef86477bb751c140456826e489ae1234236 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 15 May 2020 21:26:21 +0000 Subject: [PATCH] Deploy website Deploy website version based on 56faade743d4cdba39b542994e1248bfe74fcb1c --- docs/next/accessibilityinfo.html | 14 +++++--- docs/next/accessibilityinfo/index.html | 14 +++++--- docs/next/alert.html | 12 ++++--- docs/next/alert/index.html | 12 ++++--- docs/next/animated.html | 6 ++-- docs/next/animated/index.html | 6 ++-- docs/next/appstate.html | 6 ++-- docs/next/appstate/index.html | 6 ++-- docs/next/dimensions.html | 12 ++++--- docs/next/dimensions/index.html | 12 ++++--- docs/next/easing.html | 6 ++-- docs/next/easing/index.html | 6 ++-- docs/next/flexbox.html | 18 ++++++---- docs/next/flexbox/index.html | 18 ++++++---- docs/next/height-and-width.html | 16 +++++---- docs/next/height-and-width/index.html | 16 +++++---- docs/next/image-style-props.html | 45 ++++++++++++++++--------- docs/next/image-style-props/index.html | 45 ++++++++++++++++--------- docs/next/interactionmanager.html | 11 +++--- docs/next/interactionmanager/index.html | 11 +++--- docs/next/keyboard.html | 11 +++--- docs/next/keyboard/index.html | 11 +++--- docs/next/layout-props.html | 4 +-- docs/next/layout-props/index.html | 4 +-- docs/next/layoutanimation.html | 29 ++++++++++------ docs/next/layoutanimation/index.html | 29 ++++++++++------ docs/next/linking.html | 24 ++++++------- docs/next/linking/index.html | 24 ++++++------- docs/next/panresponder.html | 13 ++++--- docs/next/panresponder/index.html | 13 ++++--- docs/next/pixelratio.html | 6 ++-- docs/next/pixelratio/index.html | 6 ++-- docs/next/shadow-props.html | 8 +++-- docs/next/shadow-props/index.html | 8 +++-- docs/next/share.html | 6 ++-- docs/next/share/index.html | 6 ++-- docs/next/style.html | 24 +++++++------ docs/next/style/index.html | 24 +++++++------ docs/next/stylesheet.html | 35 ++++++++++++------- docs/next/stylesheet/index.html | 35 ++++++++++++------- docs/next/systrace.html | 18 +++++----- docs/next/systrace/index.html | 18 +++++----- docs/next/text-style-props.html | 13 +++---- docs/next/text-style-props/index.html | 13 +++---- docs/next/transforms.html | 12 ++++--- docs/next/transforms/index.html | 12 ++++--- docs/next/vibration.html | 18 +++++----- docs/next/vibration/index.html | 18 +++++----- docs/next/view-style-props.html | 6 ++-- docs/next/view-style-props/index.html | 6 ++-- 50 files changed, 456 insertions(+), 290 deletions(-) diff --git a/docs/next/accessibilityinfo.html b/docs/next/accessibilityinfo.html index c95ac9d3bdd..53ec5f6f166 100644 --- a/docs/next/accessibilityinfo.html +++ b/docs/next/accessibilityinfo.html @@ -85,7 +85,7 @@ import React, { useState, useEffect } from "react"; import { AccessibilityInfo, View, Text, StyleSheet } from "react-native"; -export default function App() { +const App = () => { const [reduceMotionEnabled, setReduceMotionEnabled] = useState(false); const [screenReaderEnabled, setScreenReaderEnabled] = useState(false); @@ -148,10 +148,12 @@ margin: 30 } }); + +export default App;

import React, { useState, useEffect } from "react"; import { AccessibilityInfo, View, Text, StyleSheet } from "react-native"; -export default function App() { +const App = () => { const [reduceMotionEnabled, setReduceMotionEnabled] = useState(false); const [screenReaderEnabled, setScreenReaderEnabled] = useState(false); @@ -148,10 +148,12 @@ margin: 30 } }); + +export default App;

const window = Dimensions.get("window"); const screen = Dimensions.get("screen"); -export default function App() { +const App = () => { const [dimensions, setDimensions] = useState({ window, screen }); const onChange = ({ window, screen }) => { @@ -128,10 +128,12 @@ alignItems: "center" } }); + +export default App;
const window = Dimensions.get("window"); const screen = Dimensions.get("screen"); -export default class App extends Component { +class App extends Component { state = { dimensions: { window, @@ -189,10 +191,12 @@ alignItems: "center" } }); + +export default App;
const window = Dimensions.get("window"); const screen = Dimensions.get("screen"); -export default function App() { +const App = () => { const [dimensions, setDimensions] = useState({ window, screen }); const onChange = ({ window, screen }) => { @@ -128,10 +128,12 @@ alignItems: "center" } }); + +export default App;
const window = Dimensions.get("window"); const screen = Dimensions.get("screen"); -export default class App extends Component { +class App extends Component { state = { dimensions: { window, @@ -189,10 +191,12 @@ alignItems: "center" } }); + +export default App;
import React, { useEffect } from "react"; import { Keyboard, TextInput, StyleSheet } from "react-native"; -export default function Example() { +const Example = () => { useEffect(() => { Keyboard.addListener("keyboardDidShow", _keyboardDidShow); @@ -120,10 +120,11 @@ const s = StyleSheet.create({ } }) +export default Example;
import React, { useEffect } from "react"; import { Keyboard, TextInput, StyleSheet } from "react-native"; -export default function Example() { +const Example = () => { useEffect(() => { Keyboard.addListener("keyboardDidShow", _keyboardDidShow); @@ -120,10 +120,11 @@ const s = StyleSheet.create({ } }) +export default Example;
export default App; -

-
true); } -export default function App() { +const App = () => { const [firstBoxPosition, setFirstBoxPosition] = useState("left"); const [secondBoxPosition, setSecondBoxPosition] = useState("left"); const [thirdBoxPosition, setThirdBoxPosition] = useState("left"); @@ -516,10 +519,12 @@ const styles = StyleSheet.create({ alignSelf: "center" } }); + +export default App;
true); } -export default class App extends Component { +class App extends Component { state = { firstBoxPosition: "left", secondBoxPosition: "left", @@ -635,10 +640,12 @@ const styles = StyleSheet.create({ alignSelf: "center" } }); + +export default App;
export default App; -

-
true); } -export default function App() { +const App = () => { const [firstBoxPosition, setFirstBoxPosition] = useState("left"); const [secondBoxPosition, setSecondBoxPosition] = useState("left"); const [thirdBoxPosition, setThirdBoxPosition] = useState("left"); @@ -516,10 +519,12 @@ const styles = StyleSheet.create({ alignSelf: "center" } }); + +export default App;
true); } -export default class App extends Component { +class App extends Component { state = { firstBoxPosition: "left", secondBoxPosition: "left", @@ -635,10 +640,12 @@ const styles = StyleSheet.create({ alignSelf: "center" } }); + +export default App;
export default App; - const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "center", alignItems: "center" }, }); + +export default App;
export default App; - const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "center", alignItems: "center" }, }); + +export default App;
height: size }; -export default App = () => ( +const App = () => ( <ScrollView style={styles.scrollContainer}> <View style={styles.container}> <Text>Current Pixel Ratio is:</Text> @@ -140,10 +140,12 @@ const styles = StyleSheet.create({ marginTop: 4 } }); + +export default App;
height: size }; -export default App = () => ( +const App = () => ( <ScrollView style={styles.scrollContainer}> <View style={styles.container}> <Text>Current Pixel Ratio is:</Text> @@ -140,10 +140,12 @@ const styles = StyleSheet.create({ marginTop: 4 } }); + +export default App;
Edit

Shadow Props

Edit

Shadow Props

-

-