react-native-demo-library-by-rinkal 1.1.9 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/TaskCard.tsx +3 -3
  2. package/package.json +1 -1
package/TaskCard.tsx CHANGED
@@ -1,9 +1,9 @@
1
1
  import { View, Text } from 'react-native';
2
2
  const TaskCard = () => {
3
3
  return (
4
- <View>
5
- <Text>Hello</Text>
6
- <Text>This is a task description from library.</Text>
4
+ <View style={{ padding: 10, borderWidth: 1, borderColor: '#ccc', borderRadius: 5, margin: 5 }}>
5
+ <Text style={{ fontWeight: 'bold', fontSize: 16 }}>Hello</Text>
6
+ <Text style={{ fontSize: 14 }}>This is a task description from library.</Text>
7
7
  </View>
8
8
  );
9
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-demo-library-by-rinkal",
3
- "version": "1.1.9",
3
+ "version": "1.2.0",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "rinkal",