You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add it in your root build.gradle at the end of repositories:
30
38
31
-
- For Gradle version 5.x.x or less
32
-
```
33
-
allprojects {
34
-
repositories {
35
-
...
36
-
maven { url 'https://jitpack.io' }
37
-
}
38
-
}
39
-
```
40
-
- For Gradle version 6.x.x and above, in settings.gradle file inside `pluginManagement` block
41
-
```
42
-
pluginManagement {
43
-
repositories {
44
-
...
45
-
maven { url 'https://jitpack.io' }
46
-
}
47
-
}
48
-
```
39
+
- For Gradle version 5.x.x or less
40
+
```
41
+
allprojects {
42
+
repositories {
43
+
...
44
+
maven { url 'https://jitpack.io' }
45
+
}
46
+
}
47
+
```
48
+
- For Gradle version 6.x.x and above, in settings.gradle file inside `pluginManagement` block
49
+
```
50
+
pluginManagement {
51
+
repositories {
52
+
...
53
+
maven { url 'https://jitpack.io' }
54
+
}
55
+
}
56
+
```
49
57
50
58
* Add the dependency in your app's build.gradle file
51
59
@@ -56,6 +64,7 @@ In this repository, provided demonstration for showcaseview, which is a way to d
56
64
```
57
65
58
66
## 🤔 How to use it
67
+
59
68
* Composable function which is used to start showcase view
60
69
```kotlin
61
70
fun ShowCaseTarget(
@@ -91,7 +100,8 @@ In this repository, provided demonstration for showcaseview, which is a way to d
91
100
}
92
101
```
93
102
94
-
* On which ever component you need to showcase, take coordinates of that component using Modifier.onGloballyPositioned and use ShowcaseProperty like shown below
103
+
* On which ever component you need to showcase, take coordinates of that component using
104
+
Modifier.onGloballyPositioned and use ShowcaseProperty like shown below
95
105
```kotlin
96
106
Image(
97
107
imageVector =Icons.Default.MoreVert,
@@ -112,6 +122,7 @@ In this repository, provided demonstration for showcaseview, which is a way to d
112
122
113
123
### All Attributes
114
124
------------------------
125
+
115
126
| Attribute | Description | Default |
116
127
| --- | --- | --- |
117
128
|`index`| Set index to show showcase one by one | None |
@@ -127,35 +138,58 @@ In this repository, provided demonstration for showcaseview, which is a way to d
127
138
|`key`| To manage if showcase already shown or not | None |
-[SSJetPackComposeProgressButton](https://github.com/SimformSolutionsPvtLtd/SSJetPackComposeProgressButton) : SSJetPackComposeProgressButton is an elegant button with a different loading animations which makes your app attractive.
134
-
-[SSJetpackComposeSwipeableView](https://github.com/SimformSolutionsPvtLtd/SSJetpackComposeSwipeableView) : SSJetpackComposeSwipeableView is a small library which provides support for the swipeable views. You can use this in your lazyColumns or can add a simple view which contains swipe to edit/delete functionality.
135
-
-[SSComposeOTPPinView](https://github.com/SimformSolutionsPvtLtd/SSComposeOTPPinView) : A custom OTP view to enter a code usually used in authentication. It includes different types of OTPViews which is easy to use and configure your own view and character of OTP using all the attributes.
Whether you're helping us fix bugs, improve the docs, or a feature request, we'd love to have you! 💪
147
-
Check out our __[Contributing Guide](https://github.com/SimformSolutionsPvtLtd/SSComposeShowCaseView/blob/develop/CONTRIBUTING.md)__ for ideas on contributing.
170
+
171
+
Whether you're helping us fix bugs, improve the docs, or a feature request, we'd love to have you!
0 commit comments