@questlabs/react-native-sdk
Version:
Quest react native sdk
67 lines (66 loc) • 1.74 kB
text/typescript
import {StyleSheet} from 'react-native'
export const styles = StyleSheet.create({
buttonViewStyle:{
flexDirection:"row",justifyContent:"space-between",marginVertical:20
},
buttonInnerViewStyle:{backgroundColor:"black",justifyContent:'space-evenly',alignItems:"center",borderWidth:1,borderRadius:10,flexDirection:"row",width:102,height:39},
buttonTitleTextStyle:{color:"white"},
buttonIconStyle:{tintColor:"white"},
CreditViewStyle:{
borderRadius: 10,
backgroundColor: "white",
elevation:5,
flexDirection: "row",
justifyContent: "center",
alignItems:"center",
padding:10
},
CreditTitleTextStyle:{},
buyButtonViewStyle:{backgroundColor:"black",borderRadius:30,marginLeft:20,width:65,height:25,justifyContent:"center",alignItems:"center"},
buyButtonTextStyle:{color:"white"},
centeredView: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
marginTop: 22,
},
modalView: {
margin: 20,
backgroundColor: 'white',
borderRadius: 20,
padding: 35,
// alignItems: 'center',
shadowColor: '#000',
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.25,
shadowRadius: 4,
elevation: 5,
},
button: {
borderRadius: 20,
padding: 10,
elevation: 2,
},
buttonOpen: {
backgroundColor: '#F194FF',
},
buttonClose: {
backgroundColor: '#2196F3',
},
textStyle: {
color: 'black',
fontWeight: 'bold',
},
modalText: {
marginTop: 16,
textAlign: 'center',
fontWeight:'700'
},
successImageStyle:{},
descritionTextStyle:{fontSize:14,fontWeight:'400',textAlign:'center',marginVertical:10},
crossIconViewStyle:{ alignItems: "flex-end" },
modalInnerViewStyle:{ justifyContent: "center", alignItems: "center" },
});