Skip to content

Commit

Permalink
Update website/blog/2020-07-06-version-0.63.md
Browse files Browse the repository at this point in the history
Co-authored-by: Ricky <rickhanlonii@gmail.com>
  • Loading branch information
grabbou and rickhanlonii committed Jul 8, 2020
1 parent 7f589b2 commit 113c6b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/blog/2020-07-06-version-0.63.md
Expand Up @@ -49,7 +49,7 @@ React Native is built to enable applications to meet user’s expectations of th

These components make it easy to get started making things interactive. However, because they include built-in styles and effects that don’t match the system interaction, they make it easy to tell when experiences are written with React Native. Further, as React Native has grown and our bar for high-quality applications has gone up, these components haven't grown with it. React Native now supports platforms like Web, Desktop, and TV, but support for additional input modalities has been lacking. React Native needs something that meets users' expectations and gives them the best possible interaction experience on all platforms.

To address these problems, we are shipping a new core component called Pressable. This component can be used to detect various types of interactions. It can be extended by the platform to include things like hover, blur, focus, and more. We expect that most people will build and share components utilizing Pressable under the hood instead of relying on the default experience of something like TouchableOpacity.
To address these problems, we are shipping a new core component called `Pressable`. This component can be used to detect various types of interactions. It can be extended by the platform to include things like hover, blur, focus, and more. We expect that most people will build and share components utilizing `Pressable` under the hood instead of relying on the default experience of something like `TouchableOpacity`.

```jsx
import { Pressable, Text } from 'react-native';
Expand Down

0 comments on commit 113c6b4

Please sign in to comment.