How change handle color
See original GitHub issueHow can I change the handle color? I have tried this:
<BottomSheet
ref={this.bottomSheetRef}
index={-1}
snapPoints={[0, 255]}
onChange={this.onChange}
backdropComponent={BottomSheetBackdrop}
handleComponent={() =>
<View style={styles.closeLineContainer}>
<View style={styles.closeLine}></View>
</View>
}
>
...
</BottomSheet>
styles:
closeLineContainer: {
alignSelf: 'center'
},
closeLine: {
width: 40,
height: 6,
borderRadius: 3,
backgroundColor: Colors.lightGray,
marginTop: 9,
},
This is the result:

As you can see there i a space in the bottom that I don’t know how I can remove, instead if I remove the custom handleComponent I get this that is what I want:
So my question is, how can I just change the handle color?
| Library | Version |
|---|---|
| @gorhom/bottom-sheet | 2.0.0 |
| react-native | 0.63.3 |
| react-native-reanimated | 1.13.2 |
| react-native-gesture-handler | 1.9.0 |
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:13 (4 by maintainers)
Top Results From Across the Web
Color matching and replacing my broken door handle - YouTube
I decided it was time to replace a broke door handle i have had for a while now, I wanted to show you...
Read more >Color Changing Wrap For Tesla Model 3 Door Handles!!! How ...
I bought these color changing wraps for my 2020 Tesla Model 3 on Amazon Prime with my own money! Honest review, and how...
Read more >How to Change the Color of Your Name on Twitch
The second option to change your Twitch username color is by typing /color in chat. When you type /color it'll bring up a...
Read more >How to Change the Color of Your Name on Twitch - Lifewire
There's an easy chat command for changing your name color, too. Just type /color followed by the color you want to use. You...
Read more >How To Change the Username Color on Discord - ITGeared
If you want to change the color of your username, you must be the server's admin. Server admins can create roles and assign...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

@gorhom Thank for the answer, you have to add also the custom handler:
In your image above I see that you haven’t used it
@gorhom Now it works! thank you very much!