Backdrop opacity is not working
See original GitHub issue<Modal
visible={modalVisible}
hasBackdrop={true}
backdropOpacity={0.5}
backdropColor={'rgba(0, 0, 0, 0.8)'}
onBackdropPress={() => {
setModalVisible(false);
}}>
<Text>Modal Opened</Text>
</Modal>
backDropOpacity is only getting applied. When you apply and save the file it is working. Once I close and reopen the modal the backDropOpacity is not getting applied.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5
Top Results From Across the Web
CSS opacity background color and text not working [duplicate]
I'm making an app for FireFox OS and I want to make button background opacity 0.5 and the text opacity 1 but it...
Read more >Backdrop Opacity - Tailwind CSS
Controlling opacity of backdrop filters. Use the backdrop-opacity-{amount} utilities to control the opacity of other backdrop filters applied to an element.
Read more >opacity | CSS-Tricks
The opacity property in CSS specifies how transparent an element is. Opacity has a default initial value of 1 (100% opaque). Opacity is...
Read more >CSS3 Opacity not working - HTML & CSS - SitePoint Forums
Hi,. I'm trying to add opacity on a border as it should degrade nicely with “old” browsers but it doesn't work (FF 3.6,...
Read more >Set the opacity only to background color not on the text in CSS
The opacity property is used in the image to describes the transparency of the image. The value of opacity lies between 0.0 to...
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 FreeTop 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
Top GitHub Comments
There is an issue with the prop I placed
Previously I place visible so the backdrop is not working. The prop should be isVisible.
yes, thanks @vineelk8 . Fixed ! after changed visible to isVisible