Co-authored-by: SANDEEP KUMAR <sandeep.ku@navi.com> Co-authored-by: Somarapu Vamshi <somarapu.vamshi@navi.com> Co-authored-by: Shivam Goyal <shivam.goyal@navi.com> Co-authored-by: vedant aggarwal <vedant.aggarwal@navi.com> Co-authored-by: Mehul Garg <mehul.garg@navi.com> Co-authored-by: Hardik Chaudhary <hardik.chaudhary@navi.com> Co-authored-by: Aditya Narayan Malik <aditya.narayan@navi.com> Co-authored-by: Shaurya Rehan <shaurya.rehan@navi.com> Co-authored-by: Divyesh Shinde <divyesh.shinde@navi.com> Co-authored-by: Mohit Rajput <mohit.rajput@navi.com> Co-authored-by: sharmapoojabalrambhai <sharma.balrambhai@navi.com> Co-authored-by: Prajjaval Verma <prajjaval.verma@navi.com>
55 lines
1.1 KiB
TypeScript
55 lines
1.1 KiB
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
const styles = StyleSheet.create({
|
|
rowContainer: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
paddingBottom: 12,
|
|
},
|
|
listContainer: {
|
|
backgroundColor: "white",
|
|
paddingHorizontal: 16,
|
|
paddingVertical: 14,
|
|
borderRadius: 4,
|
|
borderWidth: 1,
|
|
borderColor: "#EBEBEB",
|
|
},
|
|
itemRowContainer: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
paddingVertical: 10,
|
|
},
|
|
listFooterContainer: {
|
|
marginHorizontal: -16,
|
|
marginTop: 6,
|
|
marginBottom: -14,
|
|
borderBottomStartRadius: 3,
|
|
borderBottomEndRadius: 3,
|
|
paddingHorizontal: 16,
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
},
|
|
overlappedImageContainer: {
|
|
flexDirection: "row",
|
|
alignItems: "center",
|
|
marginLeft: 13,
|
|
},
|
|
rightIconContainer: {
|
|
paddingVertical: 3,
|
|
flexShrink: 0,
|
|
paddingHorizontal: 2,
|
|
},
|
|
containerStyles: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
alignItems: "center",
|
|
},
|
|
itemRowContainerStyles: {
|
|
flex: 1,
|
|
width: "100%",
|
|
paddingVertical: 3,
|
|
},
|
|
});
|
|
|
|
export default styles;
|