I am using Facebook SDK's (via react-native-fbsdk) Login Button in my React-Native application.
The button text Continue with Facebook appears centered vertically in iOS but is off-center in Android (7.0).
Is my only option to make my own custom button which calls the LoginManager manually, or is there a way to align the text using styles (I tried alignItems and justifyContent)? It seems like I have to do the former based on this SO question.
This is my code as of now:
<LoginButton
scope={'public_profile email'}
style={{
width: 220,
height: 40
}}
onLoginFinished={this._facebookLogin}
onLogoutFinished={() => console.log('logout.')}
/>

