| 12345678910111213141516171819 |
- import {
- StyleSheet
- } from "react-native";
- const stylesheet = StyleSheet.create({
- descText: {
- marginBottom: 20
- },
- scrollView: {
- borderRadius: 10,
- borderWidth: 1,
- height: 300
- },
- item: {
- borderBottomWidth: 1,
- padding: 15
- }
- });
- export default stylesheet;
|