A framework for building native apps using React
Overall
score
100%
Evaluation — 100%
↑ 1.06xAgent success when using this tile
Build a task management mobile application that provides accessible custom actions for screen reader users to efficiently manage their tasks.
Create a task list component that allows users to view and interact with tasks. Each task should support custom accessibility actions that enable screen reader users to:
The application should be fully accessible to users with visual impairments, allowing them to perform these task management operations through screen reader custom actions without requiring multiple taps or navigation steps.
@generates
interface Task {
id: string;
title: string;
completed: boolean;
}
interface TaskListProps {
initialTasks: Task[];
}
export default function TaskList(props: TaskListProps): JSX.Element;A framework for building native mobile applications using React and JavaScript/TypeScript.
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