Closed AllanKlaus closed 4 years ago
@AllanKlaus Hey Allan, you can achieve it by passing your own JSX to customView
prop. Appreciate the PR, going to close it for now.
for who is looking for a solution, this worked for me:
<AwesomeAlert
customView={<ScrollView bounce={false}>....</ScrollView>}
contentContainerStyle={{ maxHeight: '80%' }}
/>
It works, but when I did it It needed a lot of things in this customView. I cloned the project and create a lib on my project to make this change that was not approved.
Motivation
When we have a large message we can not see all message.
Solution
Add the content of modal as a child of ScrollView it will enable to scroll the message modal.
Changelog
[x] Fix large messages to show correctly on modal
Before
After