21 lines
384 B
TypeScript
21 lines
384 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
const styles = StyleSheet.create({
|
|
flatListContainer: {
|
|
paddingLeft: 16,
|
|
paddingRight: 8,
|
|
paddingVertical: 14,
|
|
},
|
|
listItem: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
backgroundColor: "#FFF",
|
|
},
|
|
listContainer: {
|
|
paddingHorizontal: 12,
|
|
paddingTop: 12,
|
|
},
|
|
});
|
|
|
|
export default styles;
|