Files
react-native/packages/rn-tester/js/examples/ScrollView/ScrollViewIndicatorInsetsIOSExample.js
Tim Yung 3e6423fe65 RN: Flowify packages/rn-tester (#51788)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51788

Adds `flow` to the remaining files that are lacking it in the `packages/rn-tester` directory.

This also adds any necessary type annotations and fixes lint warnings.

Changelog:
[Internal]

Reviewed By: SamChou19815

Differential Revision: D75899307

fbshipit-source-id: 27a74ed0007b3b754446a45931c2c148312d5e3a
2025-06-04 12:03:52 -07:00

138 lines
3.7 KiB
JavaScript

/**
* 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(false);
const {height, width} = useWindowDimensions();
return (
<View>
<Modal
animationType="slide"
visible={modalVisible}
onRequestClose={() => setModalVisible(false)}
presentationStyle="fullScreen"
statusBarTranslucent={false}
supportedOrientations={['portrait', 'landscape']}>
<View style={styles.modal}>
<ScrollView
contentContainerStyle={[
styles.scrollViewContent,
{
height: height * 1.2,
width: width * 1.2,
},
]}
automaticallyAdjustsScrollIndicatorInsets={
automaticallyAdjustsScrollIndicatorInsets
}
style={styles.scrollView}>
<View style={styles.description}>
<Text>
When{' '}
<Text style={styles.code}>
automaticallyAdjustsScrollIndicatorInsets
</Text>{' '}
is true, the scrollbar is inset to the status bar. When false,
it reaches the edge of the modal.
</Text>
<Text>
Check out the UIScrollView docs to learn more about{' '}
<Text style={styles.code}>
automaticallyAdjustsScrollIndicatorInsets
</Text>
</Text>
</View>
<View style={styles.toggle}>
<Text>
<Text style={styles.code}>
automaticallyAdjustsScrollIndicatorInsets
</Text>{' '}
is {String(automaticallyAdjustsScrollIndicatorInsets)}
</Text>
<Switch
onValueChange={v =>
setAutomaticallyAdjustsScrollIndicatorInsets(v)
}
value={automaticallyAdjustsScrollIndicatorInsets}
style={styles.switch}
/>
</View>
<Button onPress={() => setModalVisible(false)} title="Close" />
</ScrollView>
</View>
</Modal>
<Text />
<Button
onPress={() => setModalVisible(true)}
title="Present Fullscreen Modal with ScrollView"
/>
</View>
);
}
const styles = StyleSheet.create({
modal: {
flex: 1,
},
scrollView: {
flex: 1,
height: 1000,
},
scrollViewContent: {
alignItems: 'center',
backgroundColor: '#ffaaaa',
justifyContent: 'flex-start',
paddingTop: 200,
},
switch: {
marginBottom: 40,
},
toggle: {
margin: 20,
alignItems: 'center',
},
description: {
marginHorizontal: 80,
},
code: {
fontSize: 10,
fontFamily: 'Courier',
},
});
exports.title = 'ScrollViewIndicatorInsets';
exports.category = 'iOS';
exports.description =
'ScrollView automaticallyAdjustsScrollIndicatorInsets adjusts scroll indicator insets using OS-defined logic on iOS 13+.';
exports.examples = [
{
title: '<ScrollView> automaticallyAdjustsScrollIndicatorInsets Example',
render: (): React.Node => <ScrollViewIndicatorInsetsExample />,
},
];