react-native-login-screen
Version:
Fully Customizable & Ready to use Login Screen for React Native
25 lines • 634 B
JavaScript
import { StyleSheet, Dimensions, } from "react-native";
const { width: ScreenWidth } = Dimensions.get("screen");
export default StyleSheet.create({
container: {
height: 45,
borderRadius: 8,
width: ScreenWidth * 0.9,
paddingLeft: ScreenWidth * 0.2,
alignItems: "center",
flexDirection: "row",
backgroundColor: "#e9eef4",
},
iconImageStyle: {
width: 20,
height: 20,
},
textContainer: {
marginLeft: 16,
},
textStyle: {
color: "#315092",
fontWeight: "500",
},
});
//# sourceMappingURL=SocialButton.style.js.map