AlertToast
AlertToast copied to clipboard
Background opacity of View when AlertToast type hud
Is your feature request related to a problem? Please describe. No
Describe the solution you'd like I required to set my View should dim background when AlertToast type hud presented.
Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
Additional context
I want to achieve something like below
#41 You can use this repository for this feature. alert-dismiss-mode-and-background
Hey @toseefkhilji ,
You can achieve this kind of design when adding the style
parameter and changing the background color.
AlertToast(displayMode: .alert, type: .regular, title: "Hello World!", style: .style(backgroundColor: .white))
@elai950 : Thanks