Closed
Description
(Android) Alert layout is broken on React Native 0.60.4.
Android only issue. iOS is looking fine.
React Native version:
0.60.4
Steps To Reproduce
Run the following example code:
Alert.alert( 'Title', 'Description goes here', [{ text: 'buttonOne', onPress: (): void => { /* */ }, }, { text: 'buttonTwo', onPress: (): void => { /* */ }, }], { onDismiss: (): void => { /* */ }, }, )
Describe what you expected to happen:
Alerts should look like this: https://facebook.github.io/react-native/docs/alert
Paddings are missing.