@convep_mobilogy/react-native-qms-plugin 0.1.5 → 0.1.6

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 +99 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,3 +1,100 @@
1
- # QMS_RN
2
1
 
3
- QMS React Native plugin
2
+ # Welcome to @convep_mobilogy/react-native-qms-plugin
3
+
4
+ A React Native plugin that provides ****native QMS (Quality Management System)**** components and APIs for defect management, dashboard visualization, and QMS workflow operations.
5
+
6
+ ---
7
+
8
+ # Installation
9
+
10
+ Install using npm:
11
+ ```sh
12
+ npm install @convep_mobilogy/react-native-qms-plugin
13
+ ```
14
+ Or using Yarn:
15
+ ```sh
16
+ yarn add @convep_mobilogy/react-native-qms-plugin
17
+ ```
18
+ ---
19
+
20
+ # iOS Setup
21
+ Autolinking should set up everything automatically.
22
+ 1. Navigate to your iOS folder:
23
+
24
+ ```sh
25
+ cd ios
26
+ pod install
27
+ ```
28
+ ---
29
+
30
+
31
+ # Android Setup
32
+
33
+ Autolinking should set up everything automatically.
34
+
35
+ ---
36
+
37
+ # Usage
38
+
39
+
40
+
41
+ Below are simple examples to help you use each part of the plugin.
42
+ ```tsx
43
+ import React from 'react';
44
+
45
+ import {
46
+
47
+ StatusBar,
48
+
49
+ useColorScheme,
50
+
51
+ SafeAreaView,
52
+
53
+ View,
54
+
55
+ StyleSheet,
56
+
57
+ } from 'react-native';
58
+
59
+ import { QmsDashboardView } from '@convep_mobilogy/react-native-qms-plugin';
60
+
61
+
62
+
63
+ export default function App() {
64
+
65
+ const isDarkMode = useColorScheme() === 'dark';
66
+
67
+ return (
68
+
69
+ <SafeAreaView>
70
+
71
+ <StatusBar barStyle={isDarkMode ? 'light-content' : 'dark-content'} />
72
+
73
+ <View style={styles.container}>
74
+
75
+ <QmsDashboardView style={styles.container} />
76
+
77
+ </View>
78
+
79
+ </SafeAreaView>
80
+
81
+ );
82
+
83
+ }
84
+
85
+
86
+ const styles = StyleSheet.create({
87
+
88
+ container: {
89
+
90
+ flex: 1,
91
+
92
+ },
93
+
94
+ });
95
+ ```
96
+ ---
97
+
98
+ # License
99
+
100
+ MIT © Convep
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@convep_mobilogy/react-native-qms-plugin",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "To handle defect managment",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",