stylesheet.ts 329 B

12345678910111213141516171819
  1. import {
  2. StyleSheet
  3. } from "react-native";
  4. const stylesheet = StyleSheet.create({
  5. item: {
  6. borderBottomWidth: 1,
  7. padding: 15
  8. },
  9. scrollView: {
  10. borderRadius: 10,
  11. borderWidth: 1,
  12. height: 300
  13. },
  14. descText: {
  15. marginBottom: 20
  16. }
  17. });
  18. export default stylesheet;