Skip to content

Commit c164249

Browse files
committed
fix: using pink tintColor so it also work on light theme
1 parent 23365d5 commit c164249

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

example/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ const AppContainer = () => {
313313
disabled={!nbOfRecording}>
314314
<Image
315315
source={Icons.delete}
316-
style={styles.buttonImage}
316+
style={styles.pinkButtonImage}
317317
resizeMode="contain"
318318
/>
319319
<Text style={styles.deleteRecordingTitle}>

example/src/styles.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ const styles = (params: StyleSheetParams = {}) =>
5454
tintColor: Colors.white,
5555
alignSelf: 'flex-end',
5656
},
57+
pinkButtonImage: {
58+
height: scale(22),
59+
width: scale(22),
60+
tintColor: Colors.pink,
61+
alignSelf: 'flex-end',
62+
},
5763
staticWaveformView: {
5864
flex: 1,
5965
height: scale(75),

0 commit comments

Comments
 (0)