()
| 2 | import { ScrollView, StyleSheet, View } from 'react-native' |
| 3 | |
| 4 | export default function App() { |
| 5 | return ( |
| 6 | <ScrollView style={styles.container}> |
| 7 | <View style={styles.large} /> |
| 8 | <ScrollView horizontal> |
| 9 | <View style={styles.small} /> |
| 10 | <View style={styles.small} /> |
| 11 | <View style={styles.small} /> |
| 12 | </ScrollView> |
| 13 | <View style={styles.large} /> |
| 14 | <View style={styles.small} /> |
| 15 | <View style={styles.large} /> |
| 16 | </ScrollView> |
| 17 | ) |
| 18 | } |
| 19 | |
| 20 | const styles = StyleSheet.create({ |
| 21 | container: { |
nothing calls this directly
no outgoing calls
no test coverage detected