Skip to main content

How to remove scrollbar from page

You can remove the scrollbar from the page by adding the showsVerticalScrollIndicator attribute to the page.

attributes: {
headerShown: false,
showsVerticalScrollIndicator: false, // Add this attribute
rootContainerStyle: {
flex: 1,
},
contentContainerStyle: {
flex: 1,
},
},