MCPcopy Create free account
hub / github.com/dabbott/react-native-express / App

Function App

examples/files/core_components/scrollview.js:4–18  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import { ScrollView, StyleSheet, View } from 'react-native'
3
4export 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
20const styles = StyleSheet.create({
21 container: {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected