Skip to content

Commit 6dcf2c9

Browse files
authored
Update RNTesterPlayground.js
1 parent 87c54a7 commit 6dcf2c9

1 file changed

Lines changed: 17 additions & 4 deletions

File tree

packages/rn-tester/js/examples/Playground/RNTesterPlayground.js

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,27 @@ import type {RNTesterModuleExample} from '../../types/RNTesterTypes';
1313

1414
import RNTesterText from '../../components/RNTesterText';
1515
import * as React from 'react';
16-
import {StyleSheet, View} from 'react-native';
16+
import {StyleSheet, View, Text} from 'react-native';
1717

1818
function Playground() {
1919
return (
2020
<View style={styles.container}>
21-
<RNTesterText>
22-
Edit "RNTesterPlayground.js" to change this file
23-
</RNTesterText>
21+
22+
<View>
23+
<Text>Row not cutoff</Text>
24+
</View>
25+
26+
<View style={{ display: "flex", flexDirection: "row" }}>
27+
<Text>
28+
<View>
29+
<Text>Row cutoff</Text>
30+
</View>
31+
</Text>
32+
</View>
33+
34+
<View>
35+
<Text>Row not cutoff</Text>
36+
</View>
2437
</View>
2538
);
2639
}

0 commit comments

Comments
 (0)