()
| 2 | import { Row, Spacer } from "jetpack-compose-react-native"; |
| 3 | |
| 4 | export default function SpacersExample() { |
| 5 | return ( |
| 6 | <View style={styles.container}> |
| 7 | <Text style={styles.header}>Spacer Example</Text> |
| 8 | <Row style={{ width: "100%" }}> |
| 9 | <Text>Before Spacer</Text> |
| 10 | <Spacer /> |
| 11 | <Text>After Spacer</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