A framework for building native apps using React
Overall
score
100%
Evaluation — 100%
↑ 1.06xAgent success when using this tile
Build a chat input component for a React Native mobile messaging application that provides a custom accessory view above the keyboard with quick action buttons.
Create a custom accessory view that appears above the keyboard when the text input is focused, containing action buttons that the user can tap.
Integrate the keyboard accessory with a text input field that allows users to type messages.
@generates
import React from 'react';
export interface ChatInputProps {
onSendMessage: (message: string) => void;
placeholder?: string;
}
export const ChatInput: React.FC<ChatInputProps>;Provides InputAccessoryView component for custom keyboard accessories, TextInput for text entry, and other UI components.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/npm-react-native@1000.0.0docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10