Skip to content

Commit

Permalink
fix: Fix button transparency on Android (#527)
Browse files Browse the repository at this point in the history
  • Loading branch information
machour authored and alejandronanez committed Oct 21, 2017
1 parent f9f5b04 commit 30f022b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/auth/screens/login.screen.js
Expand Up @@ -55,7 +55,10 @@ const styles = StyleSheet.create({
borderColor: colors.white,
paddingVertical: 10,
paddingHorizontal: 30,
shadowColor: 'transparent',
shadowColor: colors.transparent,
},
buttonContainer: {
backgroundColor: colors.transparent,
},
buttonText: {
...fonts.fontPrimaryBold,
Expand Down Expand Up @@ -332,6 +335,7 @@ class Login extends Component {
<Button
raised
title={translate('auth.login.signInButton', locale)}
containerViewStyle={styles.buttonContainer}
buttonStyle={styles.button}
textStyle={styles.buttonText}
onPress={() => this.setModalVisible(true)}
Expand Down

0 comments on commit 30f022b

Please sign in to comment.