React Native

React Native Components & API

TouchableOpacity, TextInput, Modal, ActivityIndicator, Platform, Dimensions, StatusBar

20 perguntas de entrevista·
Junior
1

Which component should be used to create a simple button with a transparency effect on touch?

Resposta

TouchableOpacity is the standard component for creating buttons with a visual transparency effect on touch. When the user presses it, the content opacity temporarily decreases, providing immediate visual feedback. It's the most commonly used component for simple touch interactions in React Native.

2

Which TextInput prop allows hiding the entered text, useful for password fields?

Resposta

The secureTextEntry prop hides the entered text by displaying dots or asterisks instead of characters. This is the standard method for creating secure password fields in React Native. When enabled, text is not visible on screen and clipboard is typically disabled for security reasons.

3

How to retrieve the value entered in a TextInput in a controlled manner?

Resposta

A controlled TextInput combines the value prop with the onChangeText callback. The value prop defines the displayed text and is linked to a React state. onChangeText is called on each modification with the new value, allowing state updates. This pattern ensures a single source of truth and enables real-time text validation or transformation.

4

What is the main difference between TouchableOpacity and Pressable?

5

How to display a loading indicator centered on the screen?

+17 perguntas de entrevista

Domine React Native para sua proxima entrevista

Acesse todas as perguntas, flashcards, testes tecnicos, exercicios de code review e simuladores de entrevista.

Comece gratis