Open yoosful opened 3 years ago
When two AwesomeAlert components are declared consecutively, the show property doesn't work properly in ios. As a temporary workaround, I had to wrap each one in a different component.
e.g.
<Container> <AwesomeAlert ... /> <AwesomeAlert ... /> </Container>
workaround.
<Container> <SubContainer> <AwesomeAlert ... /> </SubContainer> <SubContainer> <AwesomeAlert ... /> </SubContainer> </Container>
I'll have a look
status?
@billnbell try the workaround by Eric. Feel free to dig deeper and submit a PR.
When two AwesomeAlert components are declared consecutively, the show property doesn't work properly in ios. As a temporary workaround, I had to wrap each one in a different component.
e.g.
workaround.