stylesheet.ts 329 B

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