mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3d7973a3e6
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51634 Creates an example in the ViewExample setup for how onBlur/onFocus behave when using keyboard navigation Changelog: [Internal] Reviewed By: javache Differential Revision: D75238317 fbshipit-source-id: e69122ca17727fc7f71e9bb7a09098a2771b098e
1442 lines
39 KiB
JavaScript
1442 lines
39 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {RNTesterModule} from '../../types/RNTesterTypes';
|
|
|
|
import RNTesterText from '../../components/RNTesterText';
|
|
import * as React from 'react';
|
|
import {useState} from 'react';
|
|
import {
|
|
Platform,
|
|
PlatformColor,
|
|
Pressable,
|
|
StyleSheet,
|
|
View,
|
|
} from 'react-native';
|
|
|
|
class ViewBorderStyleExample extends React.Component<
|
|
$ReadOnly<{}>,
|
|
{showBorder: boolean},
|
|
> {
|
|
state: {showBorder: boolean} = {
|
|
showBorder: true,
|
|
};
|
|
|
|
render(): React.Node {
|
|
return (
|
|
<Pressable testID="border-style-button" onPress={this._handlePress}>
|
|
<View>
|
|
<View
|
|
style={[
|
|
{
|
|
borderWidth: 1,
|
|
padding: 5,
|
|
},
|
|
this.state.showBorder
|
|
? {
|
|
borderStyle: 'dashed',
|
|
}
|
|
: null,
|
|
]}>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
Dashed border style
|
|
</RNTesterText>
|
|
</View>
|
|
<View
|
|
style={[
|
|
{
|
|
marginTop: 5,
|
|
borderWidth: 1,
|
|
borderRadius: 5,
|
|
padding: 5,
|
|
},
|
|
this.state.showBorder
|
|
? {
|
|
borderStyle: 'dotted',
|
|
}
|
|
: null,
|
|
]}>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
Dotted border style
|
|
</RNTesterText>
|
|
</View>
|
|
</View>
|
|
</Pressable>
|
|
);
|
|
}
|
|
|
|
_handlePress = () => {
|
|
this.setState({showBorder: !this.state.showBorder});
|
|
};
|
|
}
|
|
|
|
const offscreenAlphaCompositingStyles = StyleSheet.create({
|
|
alphaCompositing: {
|
|
justifyContent: 'space-around',
|
|
width: 100,
|
|
height: 50,
|
|
borderRadius: 100,
|
|
},
|
|
});
|
|
|
|
class OffscreenAlphaCompositing extends React.Component<
|
|
$ReadOnly<{testID?: ?string}>,
|
|
{
|
|
active: boolean,
|
|
},
|
|
> {
|
|
state: {active: boolean} = {
|
|
active: false,
|
|
};
|
|
|
|
render(): React.Node {
|
|
return (
|
|
<Pressable
|
|
testID="offscreen-alpha-compositing-button"
|
|
onPress={this._handlePress}>
|
|
<View>
|
|
<RNTesterText style={{paddingBottom: 10}}>Blobs</RNTesterText>
|
|
<View
|
|
style={{opacity: 1.0, paddingBottom: 30}}
|
|
needsOffscreenAlphaCompositing={this.state.active}>
|
|
<View
|
|
style={[
|
|
offscreenAlphaCompositingStyles.alphaCompositing,
|
|
{marginTop: 0, marginLeft: 0, backgroundColor: '#FF6F59'},
|
|
]}
|
|
/>
|
|
<View
|
|
style={[
|
|
offscreenAlphaCompositingStyles.alphaCompositing,
|
|
{
|
|
marginTop: -50,
|
|
marginLeft: 50,
|
|
backgroundColor: '#F7CB15',
|
|
},
|
|
]}
|
|
/>
|
|
</View>
|
|
<RNTesterText style={{paddingBottom: 10}}>
|
|
Same blobs, but their shared container have 0.5 opacity
|
|
</RNTesterText>
|
|
<RNTesterText style={{paddingBottom: 10}}>
|
|
Tap to {this.state.active ? 'activate' : 'deactivate'}{' '}
|
|
needsOffscreenAlphaCompositing
|
|
</RNTesterText>
|
|
<View
|
|
style={{opacity: 0.8}}
|
|
needsOffscreenAlphaCompositing={this.state.active}>
|
|
<View
|
|
style={[
|
|
offscreenAlphaCompositingStyles.alphaCompositing,
|
|
{marginTop: 0, marginLeft: 0, backgroundColor: '#FF6F59'},
|
|
]}
|
|
/>
|
|
<View
|
|
style={[
|
|
offscreenAlphaCompositingStyles.alphaCompositing,
|
|
{
|
|
marginTop: -50,
|
|
marginLeft: 50,
|
|
backgroundColor: '#F7CB15',
|
|
},
|
|
]}
|
|
/>
|
|
</View>
|
|
</View>
|
|
</Pressable>
|
|
);
|
|
}
|
|
|
|
_handlePress = () => {
|
|
this.setState({active: !this.state.active});
|
|
};
|
|
}
|
|
|
|
const ZIndexExampleStyles = StyleSheet.create({
|
|
zIndex: {
|
|
justifyContent: 'space-around',
|
|
width: 100,
|
|
height: 50,
|
|
marginTop: -10,
|
|
position: 'relative',
|
|
},
|
|
});
|
|
|
|
class ZIndexExample extends React.Component<
|
|
$ReadOnly<{}>,
|
|
{
|
|
flipped: boolean,
|
|
},
|
|
> {
|
|
state: {flipped: boolean} = {
|
|
flipped: false,
|
|
};
|
|
|
|
render(): React.Node {
|
|
const indices = this.state.flipped ? [-1, 0, 1, 2] : [2, 1, 0, -1];
|
|
return (
|
|
<Pressable testID="z-index-button" onPress={this._handlePress}>
|
|
<View>
|
|
<RNTesterText style={{paddingBottom: 10}}>
|
|
Tap to flip sorting order
|
|
</RNTesterText>
|
|
<View
|
|
style={[
|
|
ZIndexExampleStyles.zIndex,
|
|
{
|
|
marginTop: 0,
|
|
backgroundColor: '#E57373',
|
|
zIndex: indices[0],
|
|
},
|
|
]}>
|
|
<RNTesterText>ZIndex {indices[0]}</RNTesterText>
|
|
</View>
|
|
<View
|
|
style={[
|
|
ZIndexExampleStyles.zIndex,
|
|
{
|
|
marginLeft: 50,
|
|
backgroundColor: '#FFF176',
|
|
zIndex: indices[1],
|
|
},
|
|
]}>
|
|
<RNTesterText>ZIndex {indices[1]}</RNTesterText>
|
|
</View>
|
|
<View
|
|
style={[
|
|
ZIndexExampleStyles.zIndex,
|
|
{
|
|
marginLeft: 100,
|
|
backgroundColor: '#81C784',
|
|
zIndex: indices[2],
|
|
},
|
|
]}>
|
|
<RNTesterText>ZIndex {indices[2]}</RNTesterText>
|
|
</View>
|
|
<View
|
|
style={[
|
|
ZIndexExampleStyles.zIndex,
|
|
{
|
|
marginLeft: 150,
|
|
backgroundColor: '#64B5F6',
|
|
zIndex: indices[3],
|
|
},
|
|
]}>
|
|
<RNTesterText>ZIndex {indices[3]}</RNTesterText>
|
|
</View>
|
|
</View>
|
|
</Pressable>
|
|
);
|
|
}
|
|
|
|
_handlePress = () => {
|
|
this.setState({flipped: !this.state.flipped});
|
|
};
|
|
}
|
|
|
|
function PositionStaticZIndexExample(): React.Node {
|
|
return (
|
|
<View
|
|
testID="view-test-zindex-with-static"
|
|
style={{backgroundColor: 'yellow', flexDirection: 'row'}}>
|
|
<View
|
|
style={{
|
|
backgroundColor: 'red',
|
|
width: 100,
|
|
height: 100,
|
|
position: 'relative',
|
|
left: 10,
|
|
}}>
|
|
<View
|
|
style={{
|
|
backgroundColor: 'purple',
|
|
width: 50,
|
|
height: 50,
|
|
top: 30,
|
|
left: 65,
|
|
position: 'relative',
|
|
}}
|
|
/>
|
|
</View>
|
|
<View
|
|
style={{
|
|
backgroundColor: 'blue',
|
|
width: 100,
|
|
height: 100,
|
|
zIndex: 100,
|
|
position: 'static',
|
|
}}>
|
|
<View
|
|
style={{
|
|
backgroundColor: 'orange',
|
|
width: 50,
|
|
height: 50,
|
|
top: 10,
|
|
position: 'relative',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
backgroundColor: 'brown',
|
|
width: 50,
|
|
height: 50,
|
|
position: 'static',
|
|
}}>
|
|
<View
|
|
style={{
|
|
backgroundColor: 'black',
|
|
width: 25,
|
|
height: 25,
|
|
top: -10,
|
|
position: 'relative',
|
|
}}
|
|
/>
|
|
</View>
|
|
</View>
|
|
<View
|
|
style={{
|
|
backgroundColor: 'green',
|
|
width: 100,
|
|
height: 100,
|
|
position: 'relative',
|
|
left: -20,
|
|
}}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
class DisplayNoneStyle extends React.Component<
|
|
$ReadOnly<{}>,
|
|
{
|
|
index: number,
|
|
},
|
|
> {
|
|
state: {index: number} = {
|
|
index: 0,
|
|
};
|
|
|
|
render(): React.Node {
|
|
return (
|
|
<Pressable testID="display-none-button" onPress={this._handlePress}>
|
|
<View>
|
|
<RNTesterText style={{paddingBottom: 10}}>
|
|
Press to toggle `display: none`
|
|
</RNTesterText>
|
|
<View
|
|
style={{
|
|
height: 50,
|
|
width: 50,
|
|
backgroundColor: 'red',
|
|
display: this.state.index % 2 === 0 ? 'none' : 'flex',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
height: 50,
|
|
width: 50,
|
|
backgroundColor: 'blue',
|
|
display: this.state.index % 3 === 0 ? 'none' : 'flex',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
height: 50,
|
|
width: 50,
|
|
backgroundColor: 'yellow',
|
|
display: this.state.index % 5 === 0 ? 'none' : 'flex',
|
|
}}>
|
|
<View
|
|
style={{
|
|
height: 30,
|
|
width: 30,
|
|
backgroundColor: 'salmon',
|
|
display: this.state.index % 11 === 0 ? 'none' : 'flex',
|
|
}}
|
|
/>
|
|
</View>
|
|
<View
|
|
style={{
|
|
height: 50,
|
|
width: 50,
|
|
backgroundColor: 'magenta',
|
|
display: this.state.index % 7 === 0 ? 'none' : 'flex',
|
|
}}
|
|
/>
|
|
</View>
|
|
</Pressable>
|
|
);
|
|
}
|
|
|
|
_handlePress = () => {
|
|
this.setState({index: this.state.index + 1});
|
|
};
|
|
}
|
|
|
|
class FlexGapExample extends React.Component<$ReadOnly<{testID?: ?string}>> {
|
|
render(): React.Node {
|
|
return (
|
|
<View
|
|
testID={this.props.testID}
|
|
style={{
|
|
flexDirection: 'row',
|
|
flexWrap: 'wrap',
|
|
borderWidth: 1,
|
|
rowGap: 20,
|
|
columnGap: 30,
|
|
}}>
|
|
<View style={{backgroundColor: 'black', height: 30, width: 30}} />
|
|
<View style={{backgroundColor: 'black', height: 30, width: 30}} />
|
|
<View
|
|
style={{
|
|
backgroundColor: 'pink',
|
|
height: 30,
|
|
flexBasis: 30,
|
|
}}
|
|
/>
|
|
<View style={{backgroundColor: 'black', height: 30, width: 30}} />
|
|
<View style={{backgroundColor: 'black', height: 30, width: 30}} />
|
|
<View style={{backgroundColor: 'black', height: 30, width: 30}} />
|
|
<View style={{backgroundColor: 'black', height: 30, width: 30}} />
|
|
<View style={{backgroundColor: 'pink', height: 30, width: 30}} />
|
|
<View style={{backgroundColor: 'pink', height: 30, width: 30}} />
|
|
<View style={{backgroundColor: 'pink', height: 30, width: 30}} />
|
|
<View style={{backgroundColor: 'pink', height: 30, width: 30}} />
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
function BoxShadowExample(): React.Node {
|
|
const defaultStyleSize = {width: 50, height: 50};
|
|
|
|
return (
|
|
<View
|
|
testID="view-test-box-shadow"
|
|
style={{flexDirection: 'row', flexWrap: 'wrap', gap: 30, padding: 20}}>
|
|
<View
|
|
style={{
|
|
...defaultStyleSize,
|
|
borderRadius: 10,
|
|
borderWidth: 5,
|
|
borderColor: 'red',
|
|
boxShadow: '0 0 10px 0 black',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
...defaultStyleSize,
|
|
borderRadius: 30,
|
|
borderWidth: 5,
|
|
borderColor: 'red',
|
|
boxShadow: 'inset 0 0 10px 0 black',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
...defaultStyleSize,
|
|
borderRadius: 30,
|
|
borderWidth: 5,
|
|
borderColor: 'red',
|
|
boxShadow:
|
|
'inset 15px -5px 5px 5px cyan, inset 15px -5px 20px 10px orange, -5px 5px 5px 0px green, 0px -10px 0px 5px black',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
...defaultStyleSize,
|
|
boxShadow: '0px 0px 5px 5px black',
|
|
}}>
|
|
<View
|
|
style={{
|
|
...defaultStyleSize,
|
|
backgroundColor: 'red',
|
|
boxShadow: 'inset 0px 0px 5px 5px black',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
...defaultStyleSize,
|
|
boxShadow: ' 0px 0px 20px 5px black',
|
|
}}
|
|
/>
|
|
</View>
|
|
<View
|
|
style={{
|
|
...defaultStyleSize,
|
|
backgroundColor: 'green',
|
|
boxShadow: '0px 10px',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
...defaultStyleSize,
|
|
backgroundColor: 'orange',
|
|
boxShadow: '5px 5px 5px 0px rgba(0, 0, 0, 0)',
|
|
}}
|
|
/>
|
|
<View
|
|
style={[
|
|
defaultStyleSize,
|
|
{
|
|
backgroundColor: 'brown',
|
|
boxShadow: '5px 5px 5px 0px rgba(0, 0, 255, 1) inset',
|
|
transform: [{scale: 1.2}],
|
|
},
|
|
]}
|
|
/>
|
|
<View
|
|
style={{
|
|
...defaultStyleSize,
|
|
backgroundColor: 'hotpink',
|
|
boxShadow: [
|
|
{
|
|
offsetX: 5,
|
|
offsetY: '5px',
|
|
blurRadius: 5,
|
|
spreadDistance: '1px',
|
|
color: 'green',
|
|
},
|
|
{
|
|
offsetX: '-5px',
|
|
offsetY: '0',
|
|
blurRadius: '5px',
|
|
spreadDistance: 2,
|
|
color: Platform.select({
|
|
ios: PlatformColor('systemOrange'),
|
|
android: PlatformColor('?attr/colorError'),
|
|
default: 'orange',
|
|
}),
|
|
},
|
|
],
|
|
}}
|
|
/>
|
|
{/* Invalid, should not render */}
|
|
<View
|
|
style={{
|
|
...defaultStyleSize,
|
|
backgroundColor: 'hotpink',
|
|
boxShadow: [
|
|
{
|
|
offsetX: '-5px',
|
|
offsetY: '',
|
|
blurRadius: 5,
|
|
spreadDistance: '1px',
|
|
color: 'green',
|
|
},
|
|
],
|
|
}}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function OutlineExample(): React.Node {
|
|
const defaultStyleSize = {width: 50, height: 50};
|
|
|
|
return (
|
|
<View
|
|
testID="view-test-outline"
|
|
style={{
|
|
padding: 10,
|
|
flexDirection: 'row',
|
|
gap: 20,
|
|
margin: 10,
|
|
flexWrap: 'wrap',
|
|
}}>
|
|
<View
|
|
style={[
|
|
defaultStyleSize,
|
|
{
|
|
borderColor: 'red',
|
|
borderWidth: 8,
|
|
outlineWidth: 8,
|
|
outlineColor: 'purple',
|
|
},
|
|
]}
|
|
/>
|
|
<View
|
|
style={[
|
|
defaultStyleSize,
|
|
{
|
|
borderColor: 'red',
|
|
borderWidth: 8,
|
|
outlineWidth: 8,
|
|
borderRadius: 20,
|
|
outlineColor: 'purple',
|
|
},
|
|
]}
|
|
/>
|
|
<View
|
|
style={[
|
|
defaultStyleSize,
|
|
{
|
|
borderColor: 'red',
|
|
borderWidth: 8,
|
|
outlineWidth: 8,
|
|
borderTopLeftRadius: 20,
|
|
borderBottomRightRadius: 20,
|
|
outlineColor: 'purple',
|
|
},
|
|
]}
|
|
/>
|
|
<View
|
|
style={[
|
|
defaultStyleSize,
|
|
{
|
|
borderColor: 'green',
|
|
borderWidth: 8,
|
|
outlineWidth: 8,
|
|
outlineColor: 'orange',
|
|
outlineStyle: 'solid',
|
|
outlineOffset: 5,
|
|
marginLeft: 5,
|
|
},
|
|
]}
|
|
/>
|
|
<View
|
|
style={[
|
|
defaultStyleSize,
|
|
{
|
|
borderColor: 'green',
|
|
borderWidth: 8,
|
|
outlineWidth: 8,
|
|
borderRadius: 20,
|
|
outlineColor: 'orange',
|
|
outlineStyle: 'dotted',
|
|
},
|
|
]}
|
|
/>
|
|
<View
|
|
style={[
|
|
defaultStyleSize,
|
|
{
|
|
borderColor: 'green',
|
|
borderWidth: 8,
|
|
outlineWidth: 8,
|
|
borderTopLeftRadius: 20,
|
|
borderBottomRightRadius: 20,
|
|
outlineColor: 'orange',
|
|
outlineStyle: 'dashed',
|
|
},
|
|
]}
|
|
/>
|
|
<View
|
|
style={[
|
|
defaultStyleSize,
|
|
{
|
|
width: 100,
|
|
borderColor: 'green',
|
|
borderWidth: 8,
|
|
outlineWidth: 8,
|
|
borderRadius: '100%',
|
|
outlineColor: 'orange',
|
|
},
|
|
]}
|
|
/>
|
|
<View
|
|
style={[
|
|
defaultStyleSize,
|
|
{
|
|
borderColor: 'green',
|
|
borderWidth: 12,
|
|
outlineWidth: 4,
|
|
outlineOffset: -8,
|
|
outlineColor: 'orange',
|
|
},
|
|
]}
|
|
/>
|
|
<View
|
|
style={[
|
|
defaultStyleSize,
|
|
{
|
|
outlineWidth: 9,
|
|
outlineColor: 'orange',
|
|
},
|
|
]}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function BoxSizingExample(): React.Node {
|
|
const styles = StyleSheet.create({
|
|
boxSizingBox: {
|
|
padding: 5,
|
|
backgroundColor: 'green',
|
|
borderWidth: 5,
|
|
margin: 10,
|
|
width: 50,
|
|
height: 25,
|
|
},
|
|
boxSizingChild: {
|
|
backgroundColor: 'red',
|
|
width: '100%',
|
|
height: '100%',
|
|
},
|
|
});
|
|
|
|
return (
|
|
<View testID={'view-test-box-sizing'}>
|
|
<RNTesterText>Content box 50x25</RNTesterText>
|
|
<View style={[styles.boxSizingBox, {boxSizing: 'content-box'}]}>
|
|
<View style={styles.boxSizingChild} />
|
|
</View>
|
|
<RNTesterText>Border box 50x25</RNTesterText>
|
|
<View style={[styles.boxSizingBox, {boxSizing: 'border-box'}]}>
|
|
<View style={styles.boxSizingChild} />
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function FocusableInnerRow({focusable}: {focusable: boolean}) {
|
|
const styles = StyleSheet.create({
|
|
focused: {
|
|
borderColor: 'blue',
|
|
borderWidth: 2,
|
|
},
|
|
innerBox: {
|
|
backgroundColor: 'red',
|
|
width: '100%',
|
|
height: 50,
|
|
borderColor: 'transparent',
|
|
borderWidth: 2,
|
|
},
|
|
innerBoxTextColor: {
|
|
color: 'white',
|
|
},
|
|
});
|
|
const [focused, setFocused] = useState(false);
|
|
return (
|
|
<View
|
|
accessible={focusable}
|
|
focusable={focusable}
|
|
onBlur={() => setFocused(false)}
|
|
onFocus={() => setFocused(true)}
|
|
style={[styles.innerBox, focused && styles.focused]}>
|
|
<RNTesterText style={styles.innerBoxTextColor}>
|
|
Focusable: {focusable ? 'true' : 'false'}
|
|
</RNTesterText>
|
|
<RNTesterText style={styles.innerBoxTextColor}>
|
|
Focused: {focused ? 'true' : 'false'}
|
|
</RNTesterText>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function FocusBlurExample(): React.Node {
|
|
const styles = StyleSheet.create({
|
|
focused: {
|
|
borderColor: 'blue',
|
|
borderWidth: 2,
|
|
},
|
|
outerBox: {
|
|
backgroundColor: 'green',
|
|
borderColor: 'transparent',
|
|
borderWidth: 2,
|
|
padding: 10,
|
|
},
|
|
outerBoxTextColor: {
|
|
color: 'white',
|
|
},
|
|
});
|
|
const [outerFocused, setOuterFocused] = useState(false);
|
|
return (
|
|
<View
|
|
onBlur={() => setOuterFocused(false)}
|
|
onFocus={() => setOuterFocused(true)}
|
|
style={[styles.outerBox, outerFocused && styles.focused]}>
|
|
<RNTesterText style={styles.outerBoxTextColor}>
|
|
Focused: {outerFocused ? 'true' : 'false'}
|
|
</RNTesterText>
|
|
<FocusableInnerRow focusable={true} />
|
|
<FocusableInnerRow focusable={true} />
|
|
<FocusableInnerRow focusable={false} />
|
|
<FocusableInnerRow focusable={true} />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export default ({
|
|
title: 'View',
|
|
documentationURL: 'https://reactnative.dev/docs/view',
|
|
category: 'Basic',
|
|
description: ('Basic building block of all UI, examples that ' +
|
|
'demonstrate some of the many styles available.': string),
|
|
displayName: 'ViewExample',
|
|
examples: [
|
|
{
|
|
title: 'Background Color',
|
|
name: 'background-color',
|
|
render(): React.Node {
|
|
return (
|
|
<View
|
|
testID="view-test-background-color"
|
|
style={{backgroundColor: '#527FE4', padding: 5}}>
|
|
<RNTesterText style={{fontSize: 11}}>Blue background</RNTesterText>
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'Border',
|
|
name: 'border',
|
|
render(): React.Node {
|
|
return (
|
|
<View
|
|
testID="view-test-border"
|
|
style={{borderColor: '#527FE4', borderWidth: 5, padding: 10}}>
|
|
<RNTesterText style={{fontSize: 11}}>5px blue border</RNTesterText>
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'Padding/Margin',
|
|
name: 'padding-margin',
|
|
render(): React.Node {
|
|
const styles = StyleSheet.create({
|
|
box: {
|
|
backgroundColor: '#527FE4',
|
|
borderColor: '#000033',
|
|
borderWidth: 1,
|
|
},
|
|
});
|
|
return (
|
|
<View
|
|
testID="view-test-padding-margin"
|
|
style={{borderColor: '#bb0000', borderWidth: 0.5}}>
|
|
<View style={[styles.box, {padding: 5}]}>
|
|
<RNTesterText style={{fontSize: 11}}>5px padding</RNTesterText>
|
|
</View>
|
|
<View style={[styles.box, {margin: 5}]}>
|
|
<RNTesterText style={{fontSize: 11}}>5px margin</RNTesterText>
|
|
</View>
|
|
<View
|
|
style={[
|
|
styles.box,
|
|
{margin: 5, padding: 5, alignSelf: 'flex-start'},
|
|
]}>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
5px margin and padding,
|
|
</RNTesterText>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
widthAutonomous=true
|
|
</RNTesterText>
|
|
</View>
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'Border Radius',
|
|
name: 'border-radius',
|
|
render(): React.Node {
|
|
return (
|
|
<View testID="view-test-border-radius">
|
|
<View style={{borderWidth: 0.5, borderRadius: 5, padding: 5}}>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
Too much use of `borderRadius` (especially large radii) on
|
|
anything which is scrolling may result in dropped frames. Use
|
|
sparingly.
|
|
</RNTesterText>
|
|
</View>
|
|
{Platform.OS === 'ios' && (
|
|
<View
|
|
style={{
|
|
borderRadius: 20,
|
|
padding: 8,
|
|
marginTop: 12,
|
|
backgroundColor: '#527FE4',
|
|
borderCurve: 'continuous',
|
|
}}>
|
|
<RNTesterText style={{fontSize: 16, color: 'white'}}>
|
|
View with continuous border curve
|
|
</RNTesterText>
|
|
</View>
|
|
)}
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'Border Style',
|
|
name: 'border-style',
|
|
render(): React.Node {
|
|
return <ViewBorderStyleExample />;
|
|
},
|
|
},
|
|
{
|
|
title: 'Rounded Borders',
|
|
name: 'rounded-borders',
|
|
render(): React.Node {
|
|
return (
|
|
<View
|
|
testID="view-test-rounded-borders"
|
|
style={{flexDirection: 'row', flexWrap: 'wrap'}}>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderRadius: 25,
|
|
borderWidth: 1,
|
|
marginRight: 10,
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderRadius: 25,
|
|
borderWidth: 10,
|
|
marginRight: 10,
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderTopLeftRadius: 5,
|
|
borderTopRightRadius: 10,
|
|
borderBottomRightRadius: 25,
|
|
borderBottomLeftRadius: 50,
|
|
borderWidth: 1,
|
|
marginRight: 10,
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderTopLeftRadius: 5,
|
|
borderTopRightRadius: 10,
|
|
borderBottomRightRadius: 25,
|
|
borderBottomLeftRadius: 50,
|
|
borderWidth: 10,
|
|
marginRight: 10,
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderLeftWidth: 6,
|
|
borderTopWidth: 6,
|
|
borderTopLeftRadius: 20,
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderRightWidth: 6,
|
|
borderTopWidth: 6,
|
|
borderTopRightRadius: 20,
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderBottomWidth: 6,
|
|
borderLeftWidth: 6,
|
|
borderBottomLeftRadius: 20,
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderBottomWidth: 6,
|
|
borderRightWidth: 6,
|
|
borderBottomRightRadius: 20,
|
|
}}
|
|
/>
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'Rounded Borders (Percentages)',
|
|
name: 'rounded-borders-percentages',
|
|
render(): React.Node {
|
|
return (
|
|
<View
|
|
testID="view-test-rounded-borders-percentages"
|
|
style={{flexDirection: 'row', flexWrap: 'wrap'}}>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderRadius: '50%',
|
|
borderWidth: 1,
|
|
marginRight: 10,
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderRadius: '50%',
|
|
borderWidth: 10,
|
|
marginRight: 10,
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderTopLeftRadius: '10%',
|
|
borderTopRightRadius: '20%',
|
|
borderBottomRightRadius: '50%',
|
|
borderBottomLeftRadius: '100%',
|
|
borderWidth: 1,
|
|
marginRight: 10,
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderTopLeftRadius: '10%',
|
|
borderTopRightRadius: '20%',
|
|
borderBottomRightRadius: '50%',
|
|
borderBottomLeftRadius: '100%',
|
|
borderWidth: 10,
|
|
marginRight: 10,
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderLeftWidth: 6,
|
|
borderTopWidth: 6,
|
|
borderTopLeftRadius: '40%',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderRightWidth: 6,
|
|
borderTopWidth: 6,
|
|
borderTopRightRadius: '40%',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderBottomWidth: 6,
|
|
borderLeftWidth: 6,
|
|
borderBottomLeftRadius: '40%',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 50,
|
|
height: 50,
|
|
borderBottomWidth: 6,
|
|
borderRightWidth: 6,
|
|
borderBottomRightRadius: '40%',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 100,
|
|
height: 50,
|
|
borderWidth: 6,
|
|
borderRadius: '100%',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 100,
|
|
height: 50,
|
|
borderWidth: 6,
|
|
borderTopLeftRadius: '10%',
|
|
borderTopRightRadius: '20%',
|
|
borderBottomRightRadius: '50%',
|
|
borderBottomLeftRadius: '100%',
|
|
}}
|
|
/>
|
|
<View
|
|
style={{
|
|
width: 100,
|
|
height: 50,
|
|
borderWidth: 6,
|
|
borderRadius: '0%',
|
|
}}
|
|
/>
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'Overflow',
|
|
name: 'overflow',
|
|
render(): React.Node {
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
borderWidth: StyleSheet.hairlineWidth,
|
|
height: 12,
|
|
marginBottom: 8,
|
|
marginEnd: 16,
|
|
width: 95,
|
|
},
|
|
content: {
|
|
height: 20,
|
|
width: 200,
|
|
},
|
|
});
|
|
|
|
// NOTE: The <View> that sets `overflow` should only have other layout
|
|
// styles so that we can accurately test view flattening optimizations.
|
|
return (
|
|
<View testID="view-test-overflow" style={{flexDirection: 'row'}}>
|
|
<View style={styles.container}>
|
|
<View style={[StyleSheet.absoluteFill]}>
|
|
<RNTesterText style={styles.content}>undefined</RNTesterText>
|
|
</View>
|
|
</View>
|
|
<View style={styles.container}>
|
|
<View style={[StyleSheet.absoluteFill, {overflow: 'hidden'}]}>
|
|
<RNTesterText style={styles.content}>hidden</RNTesterText>
|
|
</View>
|
|
</View>
|
|
<View style={styles.container}>
|
|
<View style={[StyleSheet.absoluteFill, {overflow: 'visible'}]}>
|
|
<RNTesterText style={styles.content}>visible</RNTesterText>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'Opacity',
|
|
name: 'opacity',
|
|
render(): React.Node {
|
|
return (
|
|
<View testID="view-test-opacity">
|
|
<View style={{opacity: 0}}>
|
|
<RNTesterText>Opacity 0</RNTesterText>
|
|
</View>
|
|
<View style={{opacity: 0.1}}>
|
|
<RNTesterText>Opacity 0.1</RNTesterText>
|
|
</View>
|
|
<View style={{opacity: 0.3}}>
|
|
<RNTesterText>Opacity 0.3</RNTesterText>
|
|
</View>
|
|
<View style={{opacity: 0.5}}>
|
|
<RNTesterText>Opacity 0.5</RNTesterText>
|
|
</View>
|
|
<View style={{opacity: 0.7}}>
|
|
<RNTesterText>Opacity 0.7</RNTesterText>
|
|
</View>
|
|
<View style={{opacity: 0.9}}>
|
|
<RNTesterText>Opacity 0.9</RNTesterText>
|
|
</View>
|
|
<View style={{opacity: 1}}>
|
|
<RNTesterText>Opacity 1</RNTesterText>
|
|
</View>
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'Offscreen Alpha Compositing',
|
|
name: 'offscreen-alpha-compositing',
|
|
render(): React.Node {
|
|
return (
|
|
<OffscreenAlphaCompositing testID="view-test-offscreen-alpha-compositing" />
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'ZIndex',
|
|
name: 'z-index',
|
|
render(): React.Node {
|
|
return <ZIndexExample />;
|
|
},
|
|
},
|
|
{
|
|
title: 'ZIndex With Static',
|
|
name: 'zindex-with-static',
|
|
render: PositionStaticZIndexExample,
|
|
},
|
|
{
|
|
title: '`display: none` style',
|
|
name: 'display-none',
|
|
render(): React.Node {
|
|
return <DisplayNoneStyle />;
|
|
},
|
|
},
|
|
{
|
|
title: 'BackfaceVisibility',
|
|
name: 'backface-visibility',
|
|
render(): React.Node {
|
|
return (
|
|
<View testID="view-test-backface-visibility">
|
|
<RNTesterText style={{paddingBottom: 10}}>
|
|
View #1, front is visible, back is hidden.
|
|
</RNTesterText>
|
|
<View style={{justifyContent: 'center', alignItems: 'center'}}>
|
|
<View
|
|
style={{
|
|
height: 150,
|
|
width: 150,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: 'blue',
|
|
backfaceVisibility: 'hidden',
|
|
}}>
|
|
<RNTesterText>Front</RNTesterText>
|
|
</View>
|
|
<View
|
|
style={{
|
|
height: 150,
|
|
width: 150,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: 'red',
|
|
backfaceVisibility: 'hidden',
|
|
transform: [{rotateY: '180deg'}],
|
|
position: 'absolute',
|
|
top: 0,
|
|
}}>
|
|
<RNTesterText>Back (You should not see this)</RNTesterText>
|
|
</View>
|
|
</View>
|
|
<RNTesterText style={{paddingVertical: 10}}>
|
|
View #2, front is hidden, back is visible.
|
|
</RNTesterText>
|
|
<View style={{justifyContent: 'center', alignItems: 'center'}}>
|
|
<View
|
|
style={{
|
|
height: 150,
|
|
width: 150,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: 'blue',
|
|
backfaceVisibility: 'hidden',
|
|
}}>
|
|
<RNTesterText>Front (You should not see this)</RNTesterText>
|
|
</View>
|
|
<View
|
|
style={{
|
|
height: 150,
|
|
width: 150,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: 'red',
|
|
backfaceVisibility: 'hidden',
|
|
position: 'absolute',
|
|
top: 0,
|
|
}}>
|
|
<RNTesterText>Back</RNTesterText>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'View with aria-label="label"',
|
|
name: 'aria-label',
|
|
render(): React.Node {
|
|
return (
|
|
<View
|
|
testID="view-test-aria-label"
|
|
aria-label="Blue background View with Text"
|
|
style={{backgroundColor: '#527FE4', padding: 5}}>
|
|
<RNTesterText style={{fontSize: 11}}>Blue background</RNTesterText>
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'FlexGap',
|
|
name: 'flexgap',
|
|
render(): React.Node {
|
|
return <FlexGapExample testID="view-test-flexgap" />;
|
|
},
|
|
},
|
|
{
|
|
title: 'Insets',
|
|
name: 'insets',
|
|
render(): React.Node {
|
|
return (
|
|
<View testID="view-test-insets" style={{rowGap: 5}}>
|
|
<View style={{position: 'relative', height: 40, borderWidth: 1}}>
|
|
<View
|
|
style={{
|
|
backgroundColor: '#527FE4',
|
|
padding: 5,
|
|
position: 'absolute',
|
|
inset: 5,
|
|
}}>
|
|
<RNTesterText style={{fontSize: 11}}>inset 5</RNTesterText>
|
|
</View>
|
|
</View>
|
|
<View style={{position: 'relative', height: 40, borderWidth: 1}}>
|
|
<View
|
|
style={{
|
|
backgroundColor: '#527FE4',
|
|
padding: 5,
|
|
position: 'absolute',
|
|
insetBlock: 5,
|
|
}}>
|
|
<RNTesterText style={{fontSize: 11}}>insetBlock 5</RNTesterText>
|
|
</View>
|
|
</View>
|
|
<View style={{position: 'relative', height: 40, borderWidth: 1}}>
|
|
<View
|
|
style={{
|
|
backgroundColor: '#527FE4',
|
|
padding: 5,
|
|
position: 'absolute',
|
|
insetBlockEnd: 5,
|
|
}}>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
insetBlockEnd 5
|
|
</RNTesterText>
|
|
</View>
|
|
</View>
|
|
<View style={{position: 'relative', height: 40, borderWidth: 1}}>
|
|
<View
|
|
style={{
|
|
backgroundColor: '#527FE4',
|
|
padding: 5,
|
|
position: 'absolute',
|
|
insetBlockStart: 5,
|
|
}}>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
insetBlockStart 5
|
|
</RNTesterText>
|
|
</View>
|
|
</View>
|
|
<View style={{position: 'relative', height: 40, borderWidth: 1}}>
|
|
<View
|
|
style={{
|
|
backgroundColor: '#527FE4',
|
|
padding: 5,
|
|
position: 'absolute',
|
|
insetInline: 5,
|
|
}}>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
insetInline 5
|
|
</RNTesterText>
|
|
</View>
|
|
</View>
|
|
<View style={{position: 'relative', height: 40, borderWidth: 1}}>
|
|
<View
|
|
style={{
|
|
backgroundColor: '#527FE4',
|
|
padding: 5,
|
|
position: 'absolute',
|
|
insetInlineEnd: 5,
|
|
}}>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
insetInlineEnd 5
|
|
</RNTesterText>
|
|
</View>
|
|
</View>
|
|
<View style={{position: 'relative', height: 40, borderWidth: 1}}>
|
|
<View
|
|
style={{
|
|
backgroundColor: '#527FE4',
|
|
padding: 5,
|
|
position: 'absolute',
|
|
insetInlineStart: 5,
|
|
}}>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
insetInlineStart 5
|
|
</RNTesterText>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'Logical Border Color',
|
|
name: 'logical-border-color',
|
|
render(): React.Node {
|
|
return (
|
|
<View testID="view-test-logical-border-color" style={{rowGap: 10}}>
|
|
<View style={{position: 'relative', height: 50, borderWidth: 1}}>
|
|
<View
|
|
style={{
|
|
borderBlockColor: 'orange',
|
|
borderWidth: 5,
|
|
position: 'absolute',
|
|
top: 10,
|
|
bottom: 10,
|
|
left: 10,
|
|
right: 10,
|
|
}}>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
borderBlockColor orange
|
|
</RNTesterText>
|
|
</View>
|
|
</View>
|
|
<View style={{position: 'relative', height: 65, borderWidth: 1}}>
|
|
<View
|
|
style={{
|
|
borderBlockEndColor: 'green',
|
|
borderBlockStartColor: 'purple',
|
|
borderWidth: 5,
|
|
position: 'absolute',
|
|
top: 10,
|
|
bottom: 10,
|
|
left: 10,
|
|
right: 10,
|
|
}}>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
borderBlockStartColor purple
|
|
</RNTesterText>
|
|
<RNTesterText style={{fontSize: 11}}>
|
|
borderBlockEndColor green
|
|
</RNTesterText>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: 'Box Shadow',
|
|
name: 'box-shadow',
|
|
render: BoxShadowExample,
|
|
},
|
|
{
|
|
title: 'Outline',
|
|
name: 'outline',
|
|
render: OutlineExample,
|
|
},
|
|
{
|
|
title: 'Box Sizing',
|
|
name: 'box-sizing',
|
|
render: BoxSizingExample,
|
|
},
|
|
{
|
|
title: 'Focus/Blur',
|
|
name: 'focus-blur',
|
|
render: FocusBlurExample,
|
|
},
|
|
],
|
|
}: RNTesterModule);
|