Skip to content

Commit f86cf42

Browse files
committed
Fixed screenshot width and button colors.
1 parent bfaa5ac commit f86cf42

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed
-27.4 KB
Loading

src/pages/docs/push/getting-started/react-native.mdx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -474,8 +474,6 @@ btnRed: {backgroundColor: '#dc3545'},
474474
btnPurple: {backgroundColor: '#6f42c1'},
475475
btnOrange: {backgroundColor: '#fd7e14'},
476476
btnBlue: {backgroundColor: '#007bff'},
477-
btnIndigo: {backgroundColor: '#6610f2'},
478-
btnTeal: {backgroundColor: '#20c997'},
479477
```
480478
</Code>
481479

@@ -579,10 +577,10 @@ Add three more buttons to the `buttons` view in your `return` statement:
579577

580578
<Code>
581579
```react
582-
<TouchableOpacity style={[styles.btn, styles.btnIndigo]} onPress={sendPushToDevice}>
580+
<TouchableOpacity style={[styles.btn, styles.btnBlue]} onPress={sendPushToDevice}>
583581
<Text style={styles.btnText}>Send Push to Device</Text>
584582
</TouchableOpacity>
585-
<TouchableOpacity style={[styles.btn, styles.btnTeal]} onPress={sendPushToClient}>
583+
<TouchableOpacity style={[styles.btn, styles.btnBlue]} onPress={sendPushToClient}>
586584
<Text style={styles.btnText}>Send Push to Client</Text>
587585
</TouchableOpacity>
588586
<TouchableOpacity style={[styles.btn, styles.btnBlue]} onPress={sendPushToChannel}>

0 commit comments

Comments
 (0)