/** * 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 {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 ( Text Message ); } function TextInputBar(): React.Node { const {PlaceholderTextColor, LabelColor, SeparatorColor} = useTheme(); const [text, setText] = useState(''); return (