()
| 2 | import { Row } from "jetpack-compose-react-native"; |
| 3 | |
| 4 | export default function RowsExample() { |
| 5 | return ( |
| 6 | <View style={styles.container}> |
| 7 | <Text style={styles.header}>Row Example</Text> |
| 8 | <Row style={{ height: 50 }}> |
| 9 | <Text>1</Text> |
| 10 | <Text>2</Text> |
| 11 | <Text>3</Text> |
| 12 | </Row> |
| 13 | </View> |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | const styles = StyleSheet.create({ |
| 18 | container: { |
nothing calls this directly
no outgoing calls
no test coverage detected