Files
react-native/packages/rn-tester/js/examples/InputAccessoryView/InputAccessoryViewExample.js
Sam Zhou 23c8787fe2 Add annotations to fix future errors after fix for unsound array types (#52691)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/52691

Unannotated array literals are unsound in Flow right now. This diff adds in annotations and makes a few things readonly, to reduce future errors.

Changelog: [Internal]

Reviewed By: marcoww6

Differential Revision: D78519638

fbshipit-source-id: d98a7668ecf97bcc87dcb3fad25ade736d885d9a
2025-07-17 17:30:43 -07:00

117 lines
2.5 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
*/
'use strict';
import type {RNTesterModuleExample} from '../../types/RNTesterTypes';
import {useTheme} from '../../components/RNTesterTheme';
import {useState} from 'react';
import {
Alert,
Button,
InputAccessoryView,
ScrollView,
StyleSheet,
Text,
TextInput,
View,
} from 'react-native';
function Message(): React.Node {
return (
<View style={styles.textBubbleBackground}>
<Text style={styles.text}>Text Message</Text>
</View>
);
}
function TextInputBar(): React.Node {
const {PlaceholderTextColor, LabelColor, SeparatorColor} = useTheme();
const [text, setText] = useState<string>('');
return (
<View style={[styles.textInputContainer, {borderTopColor: SeparatorColor}]}>
<TextInput
style={[styles.textInput, {color: LabelColor}]}
onChangeText={setText}
value={text}
placeholder={'Type a message...'}
placeholderTextColor={PlaceholderTextColor}
/>
<Button
onPress={() => {
Alert.alert('You tapped the button!');
}}
title="Send"
/>
</View>
);
}
function InputAccessoryViewExample(): React.Node {
const {BackgroundColor} = useTheme();
return (
<>
<ScrollView style={styles.fill} keyboardDismissMode="interactive">
{Array(15)
.fill()
.map((_, i) => (
<Message key={i} />
))}
</ScrollView>
<InputAccessoryView backgroundColor={BackgroundColor}>
<TextInputBar />
</InputAccessoryView>
</>
);
}
const BAR_HEIGHT = 44;
const styles = StyleSheet.create({
fill: {
flex: 1,
},
textInputContainer: {
flexDirection: 'row',
alignItems: 'center',
borderTopWidth: 1,
height: BAR_HEIGHT,
},
textInput: {
flex: 1,
paddingLeft: 10,
},
text: {
padding: 10,
color: 'white',
},
textBubbleBackground: {
backgroundColor: '#2f7bf6',
borderRadius: 20,
width: 110,
margin: 20,
},
});
exports.title = 'InputAccessoryView';
exports.description =
'Example showing how to use an InputAccessoryView to build an iMessage-like sticky text input';
exports.examples = [
{
title: 'Simple view with sticky input',
render: function (): React.Node {
return <InputAccessoryViewExample />;
},
},
] as Array<RNTesterModuleExample>;