We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 40e25c0 + 8b91cd0 commit 59d5e76Copy full SHA for 59d5e76
1 file changed
docs/react-native/components.md
@@ -210,14 +210,17 @@ import { Image } from 'react-native';
210
/>
211
```
212
213
-### ScrowView
+### ScrollView
214
215
- horizontal: Enables horizontal scrolling.
216
- showsVerticalScrollIndicator: Show/hide scroll bar.
217
- onScroll: Scroll event handler.
218
219
```jsx
220
-<ScrollView horizontal showsVerticalScrollIndicator={false}>
+<ScrollView
221
+ horizontal
222
+ showsVerticalScrollIndicator={false}
223
+ >
224
<Text>Scrollable content</Text>
225
</ScrollView>
226
@@ -235,6 +238,7 @@ const styles = StyleSheet.create({
235
238
backgroundColor: 'white',
236
239
},
237
240
241
+
242
## Lists Views
243
244
### FlatList
0 commit comments