cronixui 1.1.1 → 1.1.2
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.
- package/README.md +11 -7
- package/package.json +1 -1
- package/packages/flutter/pubspec.yaml +3 -3
package/README.md
CHANGED
|
@@ -35,20 +35,24 @@ go get github.com/CazyUndee/CronixUI/packages/go/cronixui
|
|
|
35
35
|
|
|
36
36
|
```toml
|
|
37
37
|
[dependencies]
|
|
38
|
-
cronixui = "1.1.
|
|
38
|
+
cronixui = "1.1.2"
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
### Flutter
|
|
42
42
|
|
|
43
|
-
```
|
|
44
|
-
|
|
43
|
+
```yaml
|
|
44
|
+
dependencies:
|
|
45
|
+
cronixui:
|
|
46
|
+
git:
|
|
47
|
+
url: https://github.com/CazyUndee/CronixUI.git
|
|
48
|
+
path: packages/flutter
|
|
45
49
|
```
|
|
46
50
|
|
|
47
51
|
### CDN
|
|
48
52
|
|
|
49
53
|
```html
|
|
50
|
-
<link rel="stylesheet" href="https://unpkg.com/cronixui@1.1.
|
|
51
|
-
<script src="https://unpkg.com/cronixui@1.1.
|
|
54
|
+
<link rel="stylesheet" href="https://unpkg.com/cronixui@1.1.2/packages/web/dist/cronixui.css">
|
|
55
|
+
<script src="https://unpkg.com/cronixui@1.1.2/packages/web/dist/cronixui.js"></script>
|
|
52
56
|
```
|
|
53
57
|
|
|
54
58
|
## Quick Start (Web)
|
|
@@ -60,14 +64,14 @@ flutter pub add cronixui
|
|
|
60
64
|
<meta charset="UTF-8">
|
|
61
65
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
62
66
|
<title>My App</title>
|
|
63
|
-
<link rel="stylesheet" href="https://unpkg.com/cronixui@1.1.
|
|
67
|
+
<link rel="stylesheet" href="https://unpkg.com/cronixui@1.1.2/packages/web/dist/cronixui.css">
|
|
64
68
|
</head>
|
|
65
69
|
<body>
|
|
66
70
|
<div class="cn-container">
|
|
67
71
|
<h1 class="cn-h1">Hello, CronixUI!</h1>
|
|
68
72
|
<button class="cn-btn cn-btn-primary">Get Started</button>
|
|
69
73
|
</div>
|
|
70
|
-
<script src="https://unpkg.com/cronixui@1.1.
|
|
74
|
+
<script src="https://unpkg.com/cronixui@1.1.2/packages/web/dist/cronixui.js"></script>
|
|
71
75
|
</body>
|
|
72
76
|
</html>
|
|
73
77
|
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
name: cronixui
|
|
2
|
-
description: A dark-themed Flutter UI component library with Material Design
|
|
3
|
-
version:
|
|
4
|
-
|
|
2
|
+
description: A dark-themed Flutter UI component library with Material Design base
|
|
3
|
+
version: 1.1.1
|
|
4
|
+
homepage: https://github.com/CazyUndee/CronixUI
|
|
5
5
|
|
|
6
6
|
environment:
|
|
7
7
|
sdk: '>=3.0.0 <4.0.0'
|