react-native-material-ui icon indicating copy to clipboard operation
react-native-material-ui copied to clipboard

ActionButton IOS

Open joaodematejr opened this issue 5 years ago • 1 comments

bug in the "Action Button" component Ios, Android running perfectly

Captura de Tela 2019-03-29 às 09 44 59

<ActionButton style={{ container: { backgroundColor: '#047cc4' } }} onPress={() => this.validarQtnGrupo()} icon="keyboard-arrow-right" />

"react-native": "0.58.4", "react": "16.8.3", "react-native-material-ui": "^1.30.1",

joaodematejr avatar Mar 29 '19 12:03 joaodematejr

temporary solution " shadowRadius: 0"

<ActionButton style={{ container: { backgroundColor: '#047cc4', elevation: 0, shadowRadius: 0 }, toolbarContainer: { elevation: 0, backgroundColor: '#047cc4' }, }} icon="arrow-drop-up" transition='speedDial'

            />

joaodematejr avatar Mar 29 '19 13:03 joaodematejr