mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3e6423fe65
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51788 Adds `flow` to the remaining files that are lacking it in the `packages/rn-tester` directory. This also adds any necessary type annotations and fixes lint warnings. Changelog: [Internal] Reviewed By: SamChou19815 Differential Revision: D75899307 fbshipit-source-id: 27a74ed0007b3b754446a45931c2c148312d5e3a
111 lines
2.5 KiB
JavaScript
111 lines
2.5 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
|
|
*/
|
|
|
|
import * as React from 'react';
|
|
import {StyleSheet, Text, View} from 'react-native';
|
|
|
|
const styles = StyleSheet.create({
|
|
invisibleBox: {
|
|
width: 100,
|
|
height: 100,
|
|
},
|
|
box: {
|
|
width: 100,
|
|
height: 100,
|
|
borderWidth: 2,
|
|
},
|
|
circle: {
|
|
width: 100,
|
|
height: 100,
|
|
borderWidth: 2,
|
|
borderRadius: 100,
|
|
},
|
|
halfcircle: {
|
|
width: 100,
|
|
height: 100,
|
|
borderWidth: 2,
|
|
borderTopStartRadius: 100,
|
|
borderBottomStartRadius: 100,
|
|
},
|
|
solid: {
|
|
backgroundColor: 'blue',
|
|
},
|
|
pointer: {
|
|
cursor: 'pointer',
|
|
},
|
|
row: {
|
|
flexDirection: 'row',
|
|
flexWrap: 'wrap',
|
|
gap: 10,
|
|
},
|
|
centerContent: {
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
});
|
|
|
|
function CursorExampleAuto(): React.Node {
|
|
return (
|
|
<View style={styles.row}>
|
|
<View style={styles.box} />
|
|
<View style={styles.circle} />
|
|
<View style={styles.halfcircle} />
|
|
<View style={[styles.box, styles.solid]} />
|
|
<View style={[styles.circle, styles.solid]} />
|
|
<View style={[styles.halfcircle, styles.solid]} />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function CursorExamplePointer(): React.Node {
|
|
return (
|
|
<View style={styles.row}>
|
|
<View style={[styles.box, styles.pointer]} />
|
|
<View style={[styles.circle, styles.pointer]} />
|
|
<View style={[styles.halfcircle, styles.pointer]} />
|
|
<View style={[styles.box, styles.solid, styles.pointer]} />
|
|
<View style={[styles.circle, styles.solid, styles.pointer]} />
|
|
<View style={[styles.halfcircle, styles.solid, styles.pointer]} />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function CursorExampleViewFlattening(): React.Node {
|
|
return (
|
|
<View style={styles.row}>
|
|
<View style={[styles.invisibleBox, styles.centerContent, styles.pointer]}>
|
|
<Text>pointer</Text>
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
exports.title = 'Cursor';
|
|
exports.category = 'UI';
|
|
exports.description =
|
|
'Demonstrates setting a cursor, which affects the appearance when a pointer is over the View.';
|
|
exports.examples = [
|
|
{
|
|
title: 'Default',
|
|
description: "Cursor: 'auto' or no cursor set ",
|
|
render: CursorExampleAuto,
|
|
},
|
|
{
|
|
title: 'Pointer',
|
|
description: 'cursor: pointer',
|
|
render: CursorExamplePointer,
|
|
},
|
|
{
|
|
title: 'View flattening',
|
|
description: 'Views with a cursor do not get flattened',
|
|
render: CursorExampleViewFlattening,
|
|
},
|
|
];
|