-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Description
If I create a ColorWheel component as a child of a flexbox View component, like so:
<View style={{display: "flex", flexDirection: "column", justifyContent: "flex-start"}}>
<Text>Alpha</Text>
<Text>Beta</Text>
<Text>Gamma</Text>
<ColorWheel
initialColor="#ee0000"
onColorChange={color => console.log({color})}
onColorChangeComplete={color => onChange(color)}
style={{width: Dimensions.get('window').width}}
thumbStyle={{ height: 30, width: 30, borderRadius: 30}}
/>
</View>
the color wheel's height and width are set to zero -- only the thumb slider remains visible:

By changing line 224 of ColorWheel.js from flex: 1, to display: flex,, the color wheel is properly sized and positioned in the flexbox:

Let me know if this change fixes any issues or if I'm using the component wrong. Thanks in advance!
Metadata
Metadata
Assignees
Labels
No labels