Lines Matching refs:button
2 title: Styling a React Native button
4 description: Learn how to style a button in a React Native app.
10 …exports a [`<Button>`](https://reactnative.dev/docs/button) component that exposes the native butt…
14 The first button is the default `<Button>` and the second is another default `<Button>` with its `c…
16 <ImageSpotlight style={{ maxWidth: 960 }} src="/static/images/faq-button-style-button.png" alt="" />
18 To create a button with a custom style, you can turn to the [`<Pressable>`](https://reactnative.dev…
19 `<Pressable>` lets us fully customize the appearance of a pressable element (like a button), in add…
21 Here's an example of using `<Pressable>` to create a button component:
33 <Pressable style={styles.button} onPress={onPress}>
40 button: {
65 src="/static/images/faq-button-style-pressable.png"
66 alt="Custom styled button component using Pressable"