xxxxxxxxxx
import React, { Component } from 'react';
import { ScrollView } from 'react-native';
export default class MyComponent extends Component {
render() {
return (
<ScrollView
showsVerticalScrollIndicator={false}
showsHorizontalScrollIndicator={false}
>
{/* Your content here */}
</ScrollView>
);
}
}
xxxxxxxxxx
<ScrollView
showsVerticalScrollIndicator ={false}
showsHorizontalScrollIndicator={false}
/>