react-native-package-fast 0.1.4 → 0.1.5

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/README.md +58 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # react-native-package-fast
2
+
3
+ react-native-package-fast
4
+
5
+ ## Installation
6
+
7
+ ```sh
8
+ npm install react-native-package-fast
9
+ yarn add react-native-package-fast
10
+ ```
11
+
12
+ ## Usage
13
+
14
+ ```js
15
+ <ViewApp Hoz-10 flex={1} Top-2 Bot-2 bot-2 top-2 center/>
16
+ <TextApp Hoz-10></TextApp>
17
+ <ImageApp source={url} size={20} content/>
18
+ <ImageFastApp/>
19
+ <ButtonApp>text</ButtonApp>
20
+ ```
21
+
22
+ ## EXAMPLE
23
+
24
+ | componet | Param | Style |
25
+ | ------------- | ---------- | --------------------- |
26
+ | All Component | Hoz-10 | marginHorizontal:10 |
27
+ | | hoz-10 | paddingHorizontal:10 |
28
+ | | Ver-10 | marginVertical:10 |
29
+ | | ver-10 | paddingVertical:10 |
30
+ | | Bot-10 | marginBottom:10 |
31
+ | | bot-10 | paddingBottom:10 |
32
+ | | Top-10 | marginTop:10 |
33
+ | | top-10 | paddingTop:10 |
34
+ | | Left-10 | marginLeft:10 |
35
+ | | left-10 | paddingLeft:10 |
36
+ | | Right-10 | marginRight:10 |
37
+ | | right-10 | paddingRight:10 |
38
+ | | padding-10 | padding:10 |
39
+ | | margin-10 | margin:10 |
40
+ | | flex={1} | style={{flex:1}} |
41
+ | | width={1} | style={{width:10}} |
42
+ | | height={1} | style={{height:1}} |
43
+ | TextApp | radius-10 | borderRadius:10 |
44
+ | | border-10 | borderWidth:10 |
45
+ | | font-10 | fontSize:10 |
46
+ | | line-10 | lineHeight:10 |
47
+ | | h1 | fontSize:20 |
48
+ | | h2 | fontSize:18 |
49
+ | | h3 | fontSize:16 |
50
+ | | h4 | fontSize:14 |
51
+ | | h5 | fontSize:12 |
52
+ | | h6 | fontSize:10 |
53
+ | | h7 | fontSize:9 |
54
+ | | header | fontSize:24 |
55
+ | ImageApp | contain | resizeMode: 'contain' |
56
+ | | cover | resizeMode: 'cover' |
57
+ | | stretch | resizeMode: 'stretch' |
58
+ | ButtonApp |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-package-fast",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "test",
5
5
  "main": "./src/module/index.js",
6
6
  "types": "./src/typescript/index.d.ts",