Add scrollview example (#30454)

Summary:
Add missing examples to ScrollView for RNTester.

## Changelog

<!-- Help reviewers and the release process by writing your own changelog entry. For an example, see:
https://github.com/facebook/react-native/wiki/Changelog
-->

[General] [Added] - Add missing examples to ScrollView for RNTester.

Pull Request resolved: https://github.com/facebook/react-native/pull/30454

Test Plan: There are a lot of examples that have been added that affects the UI (see RNCore Excel sheet for details).

Reviewed By: sammy-SC

Differential Revision: D25310613

Pulled By: rickhanlonii

fbshipit-source-id: 64a771aa8d3c3683eed983b0c36625078e5533fe
This commit is contained in:
Su Min Kim
2020-12-05 16:04:52 -08:00
committed by Facebook GitHub Bot
parent b636397a0d
commit 158abfe8bf
@@ -15,14 +15,18 @@ const React = require('react');
const {
Platform,
ScrollView,
Picker,
StyleSheet,
Text,
TouchableOpacity,
View,
TextInput,
RefreshControl,
} = require('react-native');
const nullthrows = require('nullthrows');
import {useState, useCallback} from 'react';
import type {ViewStyleProp} from 'react-native/Libraries/StyleSheet/StyleSheet';
exports.displayName = 'ScrollViewExample';
@@ -165,6 +169,98 @@ exports.examples = [
return <EnableDisableList />;
},
},
{
title: '<ScrollView> Content\n',
description: 'Adjust properties of content inside ScrollView.',
render: function(): React.Node {
return <ContentExample />;
},
},
{
title: '<ScrollView> Deceleration Rate\n',
description:
'Determines how quickly the scroll view decelerates after the user lifts their finger.',
render: function(): React.Node {
return <DecelerationRateExample />;
},
},
{
title: '<ScrollView> Enable & Disable Scrolling Behavior\n',
description:
'DirectionalLockEnabled (iOS), disableIntervalMomentum, disableScrollViewPanResponder can be enabled or disabled.',
render: function(): React.Node {
return <DisableEnable />;
},
},
{
title: '<ScrollView> Invert Sticky Headers\n',
description:
'If sticky headers should stick at the bottom instead of the top of the ScrollView. This is usually used with inverted ScrollViews.',
render: function(): React.Node {
return <InvertStickyHeaders />;
},
},
{
title: '<ScrollView> Keyboard Options\n',
description:
'Toggle the keyboard using the search bar and determine keyboard behavior in response to drag and tap.',
render: function(): React.Node {
return <KeyboardExample />;
},
},
{
title: '<ScrollView> OnContentSizeChange\n',
description:
'The text below will change when scrollable content view of the ScrollView changes.',
render: function(): React.Node {
return <OnContentSizeChange />;
},
},
{
title: '<ScrollView> OnMomentumScroll\n',
description:
'An alert will be called when the momentum scroll starts or ends.',
render: function(): React.Node {
return <OnMomentumScroll />;
},
},
{
title: '<ScrollView> OnScroll Options\n',
description:
'Change the behavior of onScroll using these options: onScrollBeginDrag, onScrollEndDrag, onScrollToTop (iOS), and overScrollMode (Android).',
render: function(): React.Node {
return <OnScrollOptions />;
},
},
{
title: '<ScrollView> RefreshControl\n',
description: 'Pull down to see RefreshControl indicator.',
render: function(): React.Node {
return <RefreshControlExample />;
},
},
{
title: '<ScrollView> Remove Clipped Subviews\n',
description:
'When true, offscreen child views (whose overflow value is hidden) are removed from their native backing superview when offscreen.',
render: function(): React.Node {
return <RemoveClippedSubviews />;
},
},
{
title: '<ScrollView> Scroll Indicator\n',
description: 'Adjust properties of the scroll indicator.',
render: function(): React.Node {
return <ScrollIndicatorExample />;
},
},
{
title: '<ScrollView> SnapTo Options\n',
description: 'Adjust properties of snapping to the scroll view.',
render: function(): React.Node {
return <SnapToOptions />;
},
},
];
if (Platform.OS === 'ios') {
exports.examples.push({
@@ -321,8 +417,712 @@ if (Platform.OS === 'ios') {
return <CenterContentList />;
},
});
exports.examples.push({
title: '<ScrollView> Always Bounces\n',
description: 'Always bounce vertically or horizontally.',
render: function(): React.Node {
return (
<>
<Text style={styles.text}>Vertical</Text>
<BouncesExampleVertical />
<Text style={styles.text}>Horizontal</Text>
<BouncesExampleHorizontal />
</>
);
},
});
exports.examples.push({
title: '<ScrollView> Bounces & Bounces Zoom\n',
description: 'There are different options for bouncing behavior.',
render: function(): React.Node {
return <BouncesExample />;
},
});
exports.examples.push({
title: '<ScrollView> Indicator Style\n',
description: 'There are different options for indicator style colors.',
render: function(): React.Node {
return <IndicatorStyle />;
},
});
exports.examples.push({
title: '<ScrollView> Maximum & Minimum Zoom Scale\n',
description: 'Set the maximum and minimum allowed zoom scale.',
render: function(): React.Node {
return <MaxMinZoomScale />;
},
});
exports.examples.push({
title: '<ScrollView> Maximum & Minimum Zoom Scale\n',
description: 'Set the maximum and minimum allowed zoom scale.',
render: function(): React.Node {
return <MaxMinZoomScale />;
},
});
exports.examples.push({
title: '<ScrollView> ScrollTo Options\n',
description:
'Toggle scrollToOverflowEnabled and scrollsToTop. When scrollToOverflowEnabled is true, the scroll view can be programmatically scrolled beyond its content size. When scrollsToTop is true, the scroll view scrolls to top when the status bar is tapped.',
render: function(): React.Node {
return <ScrollToOptions />;
},
});
} else {
exports.examples.push({
title: '<ScrollView> EndFillColor & FadingEdgeLength\n',
description: 'Toggle to set endFillColor and fadingEdgeLength.',
render: function(): React.Node {
return <EndFillColorFadingEdgeLen />;
},
});
}
const AndroidScrollBarOptions = () => {
const [persistentScrollBar, setPersistentScrollBar] = useState(false);
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
persistentScrollbar={persistentScrollBar}>
{ITEMS.map(createItemRow)}
</ScrollView>
<Button
label={'persistentScrollBar: ' + persistentScrollBar.toString()}
onPress={() => setPersistentScrollBar(!persistentScrollBar)}
/>
</View>
);
};
const EndFillColorFadingEdgeLen = () => {
const [endFillColor, setEndFillColor] = useState('');
const [fadingEdgeLen, setFadingEdgeLen] = useState(0);
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
endFillColor={endFillColor}
fadingEdgeLength={fadingEdgeLen}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
<Button
label={endFillColor === '' ? 'setEndFillColor' : 'resetEndFillColor'}
onPress={() =>
endFillColor === '' ? setEndFillColor('#A9DFD0') : setEndFillColor('')
}
/>
<Button
label={fadingEdgeLen === 0 ? 'setFadingEdgeLen' : 'resetFadingEdgeLen'}
onPress={() =>
fadingEdgeLen === 0 ? setFadingEdgeLen(300) : setFadingEdgeLen(0)
}
/>
</View>
);
};
const SnapToOptions = () => {
const [snapToAlignment, setSnapToAlignment] = useState('start');
const snapToAlignmentModes = ['start', 'center', 'end'];
const [snapToEnd, setSnapToEnd] = useState(true);
const [snapToInterval, setSnapToInterval] = useState(0);
const [snapToOffsets, setSnapToOffsets] = useState([]);
const [snapToStart, setSnapToStart] = useState(true);
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
snapToAlignment={snapToAlignment}
snapToEnd={snapToEnd}
snapToInterval={snapToInterval}
snapToOffsets={snapToOffsets}
snapToStart={snapToStart}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
{Platform.OS === 'ios' ? (
<>
<Text style={styles.rowTitle}>Snap to Alignment Mode</Text>
<Picker
selectedValue={snapToAlignment}
onValueChange={value => {
if (value === 'start' || value === 'center' || value === 'end')
setSnapToAlignment(value);
}}
itemStyle={styles.pickerItem}>
{snapToAlignmentModes.map(label => {
return <Picker.Item label={label} value={label} key={label} />;
})}
</Picker>
</>
) : null}
<Button
label={'snapToEnd: ' + snapToEnd.toString()}
onPress={() => setSnapToEnd(!snapToEnd)}
/>
<Button
label={'snapToStart: ' + snapToStart.toString()}
onPress={() => setSnapToStart(!snapToStart)}
/>
<Button
label={
snapToInterval === 0 ? 'setSnapToInterval' : 'reset snapToInterval'
}
onPress={() =>
snapToInterval === 0 ? setSnapToInterval(2) : setSnapToInterval(0)
}
/>
<Button
label={
snapToOffsets === [] ? 'setSnapToOffsets' : 'reset snapToOffsets'
}
onPress={() =>
snapToOffsets === []
? setSnapToOffsets([2, 4, 6, 8, 10])
: setSnapToOffsets([])
}
/>
</View>
);
};
const ScrollToOptions = () => {
const [scrollToOverflowEnabled, setScrollToOverflowEnabled] = useState(false);
const [scrollsToTop, setScrollsToTop] = useState(true);
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
scrollToOverflowEnabled={scrollToOverflowEnabled}
scrollsToTop={scrollsToTop}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
<Button
label={'scrollToOverflowEnabled: ' + scrollToOverflowEnabled.toString()}
onPress={() => setScrollToOverflowEnabled(!scrollToOverflowEnabled)}
/>
<Button
label={'scrollsToTop: ' + scrollsToTop.toString()}
onPress={() => setScrollsToTop(!scrollsToTop)}
/>
</View>
);
};
const ScrollIndicatorExample = () => {
const [scrollIndicatorInsets, setScrollIndicatorInsets] = useState(null);
const [showsHorizontalScrollIndic, setShowsHorizontalScrollIndic] = useState(
true,
);
const [showsVerticallScrollIndic, setShowsVerticalScrollIndic] = useState(
true,
);
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
contentInset={{top: 10, bottom: 10, left: 10, right: 10}}
scrollIndicatorInsets={scrollIndicatorInsets}
showsHorizontalScrollIndicator={showsHorizontalScrollIndic}
showsVerticalScrollIndicator={showsVerticallScrollIndic}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
<Button
label={
scrollIndicatorInsets == null
? 'setScrollIndicatorInsets'
: 'Reset scrollIndicatorInsets'
}
onPress={() =>
scrollIndicatorInsets == null
? setScrollIndicatorInsets({
top: 10,
left: 10,
bottom: 10,
right: 10,
})
: setScrollIndicatorInsets(null)
}
/>
<Button
label={
'showsHorizontalScrollIndicator: ' +
showsHorizontalScrollIndic.toString()
}
onPress={() =>
setShowsHorizontalScrollIndic(!showsHorizontalScrollIndic)
}
/>
<Button
label={
'showsVerticalScrollIndicator: ' +
showsVerticallScrollIndic.toString()
}
onPress={() => setShowsVerticalScrollIndic(!showsVerticallScrollIndic)}
/>
</View>
);
};
const RemoveClippedSubviews = () => {
const [removeClippedSubviews, setRemoveClippedSubviews] = useState(false);
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
removeClippedSubviews={removeClippedSubviews}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
<Button
label={'removeClippedSubviews: ' + removeClippedSubviews.toString()}
onPress={() => setRemoveClippedSubviews(!removeClippedSubviews)}
/>
</View>
);
};
const RefreshControlExample = () => {
const [refreshing, setRefreshing] = useState(false);
const onRefresh = useCallback(() => {
setRefreshing(true);
wait(2000).then(() => setRefreshing(false));
}, []);
const wait = timeout => {
return new Promise(resolve => {
setTimeout(resolve, timeout);
});
};
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
refreshControl={
<RefreshControl refreshing={refreshing} onRefresh={onRefresh} />
}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
</View>
);
};
const OnScrollOptions = () => {
const [onScrollDrag, setOnScrollDrag] = useState('none');
const [overScrollMode, setOverScrollMode] = useState('auto');
const overScrollModeOptions = ['auto', 'always', 'never'];
return (
<View>
<Text>onScroll: {onScrollDrag}</Text>
<ScrollView
style={[styles.scrollView, {height: 200}]}
onScrollBeginDrag={() => setOnScrollDrag('onScrollBeginDrag')}
onScrollEndDrag={() => setOnScrollDrag('onScrollEndDrag')}
onScrollToTop={() => setOnScrollDrag('onScrollToTop')}
overScrollMode={overScrollMode}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
{Platform.OS === 'android' ? (
<>
<Text style={styles.rowTitle}>Over Scroll Mode</Text>
<Picker
selectedValue={overScrollMode}
onValueChange={value => {
if (value === 'always' || value === 'auto' || value === 'never')
setOverScrollMode(value);
}}
itemStyle={styles.pickerItem}>
{overScrollModeOptions.map(label => {
return <Picker.Item label={label} value={label} key={label} />;
})}
</Picker>
</>
) : null}
</View>
);
};
const OnMomentumScroll = () => {
const [scroll, setScroll] = useState('none');
return (
<View>
<Text>Scroll State: {scroll}</Text>
<ScrollView
style={[styles.scrollView, {height: 200}]}
onMomentumScrollBegin={() => setScroll('onMomentumScrollBegin')}
onMomentumScrollEnd={() => setScroll('onMomentumScrollEnd')}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
</View>
);
};
const OnContentSizeChange = () => {
const [items, setItems] = useState(ITEMS);
const [contentSizeChanged, setContentSizeChanged] = useState('original');
return (
<View>
<Text>Content Size Changed: {contentSizeChanged}</Text>
<ScrollView
style={[styles.scrollView, {height: 200}]}
onContentSizeChange={() =>
contentSizeChanged === 'original'
? setContentSizeChanged('changed')
: setContentSizeChanged('original')
}
nestedScrollEnabled>
{items.map(createItemRow)}
</ScrollView>
<Button
label="Change Content Size"
onPress={() =>
items === ITEMS
? setItems(['1', '2', '3', '4', '5'])
: setItems(ITEMS)
}
/>
</View>
);
};
const MaxMinZoomScale = () => {
const [maxZoomScale, setMaxZoomScale] = useState('1.0');
const [minZoomScale, setMinZoomScale] = useState('1.0');
const [zoomScale, setZoomScale] = useState('1.0');
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
pinchGestureEnabled
maximumZoomScale={maxZoomScale !== '' ? parseFloat(maxZoomScale) : 0.0}
minimumZoomScale={minZoomScale !== '' ? parseFloat(minZoomScale) : 0.0}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
<Text style={styles.rowTitle}>Set Maximum Zoom Scale</Text>
<TextInput
style={styles.textInput}
value={maxZoomScale}
onChangeText={val => setMaxZoomScale(val)}
keyboardType="decimal-pad"
/>
<Text style={styles.rowTitle}>Set Minimum Zoom Scale</Text>
<TextInput
style={styles.textInput}
value={minZoomScale.toString()}
onChangeText={val => setMinZoomScale(val)}
keyboardType="decimal-pad"
/>
{Platform.OS === 'ios' ? (
<>
<Text style={styles.rowTitle}>Set Zoom Scale</Text>
<TextInput
style={styles.textInput}
value={zoomScale.toString()}
onChangeText={val => setZoomScale(val)}
keyboardType="decimal-pad"
/>
</>
) : null}
</View>
);
};
const KeyboardExample = () => {
const [keyboardDismissMode, setKeyboardDismissMode] = useState('none');
const [keyboardShouldPersistTaps, setKeyboardShouldPersistTaps] = useState(
'never',
);
const dismissOptions =
Platform.OS === 'ios'
? ['none', 'on-drag', 'interactive']
: ['none', 'on-drag'];
const persistOptions = ['never', 'always', 'handled'];
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
keyboardDismissMode={keyboardDismissMode}
keyboardShouldPersistTaps={keyboardShouldPersistTaps}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
<Text style={styles.rowTitle}>Keyboard Dismiss Mode</Text>
<Picker
selectedValue={keyboardDismissMode}
onValueChange={value => {
if (
value === 'none' ||
value === 'on-drag' ||
value === 'interactive'
)
setKeyboardDismissMode(value);
}}
itemStyle={styles.pickerItem}>
{dismissOptions.map(label => {
return <Picker.Item label={label} value={label} key={label} />;
})}
</Picker>
<Text style={styles.rowTitle}>Keyboard Should Persist taps</Text>
<Picker
selectedValue={keyboardShouldPersistTaps}
onValueChange={value => {
if (value === 'never' || value === 'always' || value === 'handled')
setKeyboardShouldPersistTaps(value);
}}
itemStyle={styles.pickerItem}>
{persistOptions.map(label => {
return <Picker.Item label={label} value={label} key={label} />;
})}
</Picker>
</View>
);
};
const InvertStickyHeaders = () => {
const [invertStickyHeaders, setInvertStickyHeaders] = useState(false);
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
stickyHeaderIndices={[0]}
invertStickyHeaders={invertStickyHeaders}
nestedScrollEnabled>
{<Text>STICKY HEADER</Text>}
{ITEMS.map(createItemRow)}
</ScrollView>
<Button
onPress={() => setInvertStickyHeaders(!invertStickyHeaders)}
label={'invertStickyHeaders: ' + invertStickyHeaders.toString()}
/>
</View>
);
};
const IndicatorStyle = () => {
const [indicatorStyle, setIndicatorStyle] = useState('default');
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
indicatorStyle={indicatorStyle}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
<Button
onPress={() =>
indicatorStyle === 'default'
? setIndicatorStyle('white')
: setIndicatorStyle('default')
}
label={'Indicator Style: ' + indicatorStyle}
/>
</View>
);
};
const DisableEnable = () => {
const [directionalLockEnabled, setDirectionalLockEnabled] = useState(false);
const [disableIntervalMomentum, setDisableIntervalMomentum] = useState(false);
const [
disableScrollViewPanResponder,
setDisableScrollViewPanResponder,
] = useState(false);
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
contentInset={{top: 10, bottom: 10, left: 10, right: 10}}
snapToInterval={0}
directionalLockEnabled={directionalLockEnabled}
disableIntervalMomentum={disableIntervalMomentum}
disableScrollViewPanResponder={disableScrollViewPanResponder}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
{Platform.OS === 'ios' ? (
<Button
onPress={() => setDirectionalLockEnabled(!directionalLockEnabled)}
label={'directionalLockEnabled: ' + directionalLockEnabled.toString()}
/>
) : null}
<Button
onPress={() => setDisableIntervalMomentum(!disableIntervalMomentum)}
label={
'setDisableIntervalMomentum: ' + disableIntervalMomentum.toString()
}
/>
<Button
onPress={() =>
setDisableScrollViewPanResponder(!disableScrollViewPanResponder)
}
label={
'setDisableScrollViewPanResponder: ' +
disableScrollViewPanResponder.toString()
}
/>
</View>
);
};
const DecelerationRateExample = () => {
const [decelRate, setDecelRate] = useState('normal');
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
decelerationRate={decelRate}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
<Button
onPress={() =>
decelRate === 'normal' ? setDecelRate('fast') : setDecelRate('normal')
}
label={'Deceleration Rate: ' + decelRate}
/>
</View>
);
};
const ContentExample = () => {
const [canCancelContentTouches, setCanCancelContentTouches] = useState(false);
const [contentInset, setContentInset] = useState(null);
const [contentContainerStyle, setContentContainerStyle] = useState(null);
const [
contentInsetAdjustmentBehavior,
setContentInsetAdjustmentBehavior,
] = useState('never');
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
canCancelContentTouches={canCancelContentTouches}
contentOffset={{x: 100, y: 0}}
contentContainerStyle={contentContainerStyle}
contentInset={contentInset}
contentInsetAdjustmentBehavior={contentInsetAdjustmentBehavior}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
{Platform.OS === 'ios' ? (
<>
<Button
onPress={() => setCanCancelContentTouches(!canCancelContentTouches)}
label={
'canCancelContentTouches: ' + canCancelContentTouches.toString()
}
/>
<Button
onPress={() =>
contentInsetAdjustmentBehavior === 'never'
? setContentInsetAdjustmentBehavior('always')
: setContentInsetAdjustmentBehavior('never')
}
label={
contentInsetAdjustmentBehavior === 'never'
? "setContentInsetAdjustmentBehavior to 'always'"
: 'reset content inset adjustment behavior'
}
/>
</>
) : null}
<Button
onPress={() =>
contentContainerStyle === null
? setContentContainerStyle(styles.containerStyle)
: setContentContainerStyle(null)
}
label={
contentContainerStyle === null
? 'setContentContainerStyle'
: 'reset content container style'
}
/>
<Button
onPress={() =>
contentInset === null
? setContentInset({top: 10, bottom: 10, left: 10, right: 10})
: setContentInset(null)
}
label={
contentInset === null ? 'setContentInset' : 'reset content inset'
}
/>
</View>
);
};
const BouncesExample = () => {
const [bounces, setBounces] = useState(false);
const [bouncesZoom, setBouncesZoom] = useState(false);
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
bounces={bounces}
bouncesZoom={bouncesZoom}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
<Button
onPress={() => setBounces(!bounces)}
label={'Bounces: ' + bounces.toString()}
/>
<Button
onPress={() => setBouncesZoom(!bouncesZoom)}
label={'Bounces Zoom: ' + bouncesZoom.toString()}
/>
</View>
);
};
const BouncesExampleHorizontal = () => {
const [bounce, setBounce] = useState(false);
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
horizontal={true}
alwaysBounceHorizontal={bounce}
contentOffset={{x: 100, y: 0}}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
<Button
onPress={() => setBounce(!bounce)}
label={'Always Bounce Horizontal: ' + bounce.toString()}
/>
</View>
);
};
const BouncesExampleVertical = () => {
const [bounce, setBounce] = useState(false);
return (
<View>
<ScrollView
style={[styles.scrollView, {height: 200}]}
alwaysBounceVertical={bounce}
contentOffset={{x: 100, y: 0}}
nestedScrollEnabled>
{ITEMS.map(createItemRow)}
</ScrollView>
<Button
onPress={() => setBounce(!bounce)}
label={'Always Bounce Vertical: ' + bounce.toString()}
/>
</View>
);
};
class Item extends React.PureComponent<{|
msg?: string,
style?: ViewStyleProp,
@@ -377,4 +1177,19 @@ const styles = StyleSheet.create({
borderRadius: 3,
minWidth: 96,
},
containerStyle: {
backgroundColor: '#aae3b6',
},
pickerItem: {
fontSize: 16,
},
rowTitle: {
flex: 1,
fontWeight: 'bold',
},
textInput: {
height: 40,
borderColor: 'gray',
borderWidth: 1,
},
});