@blazejkustra/react-native-onboarding 0.1.4 → 1.0.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.
- package/README.md +13 -6
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# react-native-onboarding
|
|
4
4
|
|
|
5
5
|
✨ **Beautiful, customizable onboarding/tutorial flows** for React Native — with smooth animations, flexible theming, and highly customizable components.
|
|
6
6
|
|
|
@@ -338,21 +338,28 @@ skipButton={({ onPress }) => (
|
|
|
338
338
|
### Image Consistency
|
|
339
339
|
Use images with the same dimensions for the best visual effect. This prevents layout shifts and creates smooth transitions between steps.
|
|
340
340
|
|
|
341
|
+
**Image creator**: Use this [Figma Community template](https://www.figma.com/community/file/1556597720381753708) to design consistent onboarding illustrations and export assets with the recommended dimensions.
|
|
342
|
+
|
|
341
343
|
### Persistent Storage
|
|
342
344
|
Save onboarding completion state to persistent storage (MMKV, AsyncStorage) to prevent users from seeing the onboarding again after completion.
|
|
343
345
|
|
|
344
346
|
### Navigation
|
|
345
347
|
On completion, navigate users to the main app to provide a smooth transition from onboarding to the core experience.
|
|
346
348
|
|
|
347
|
-
|
|
348
349
|
## 🤝 Contributing
|
|
349
350
|
|
|
350
351
|
We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for development workflow and [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for our code of conduct.
|
|
351
352
|
|
|
352
|
-
## 📄 License
|
|
353
|
-
|
|
354
|
-
MIT © [Blazej Kustra](https://github.com/blazejkustra)
|
|
355
|
-
|
|
356
353
|
---
|
|
357
354
|
|
|
358
355
|
Built with [create-react-native-library](https://github.com/callstack/react-native-builder-bob) 🛠
|
|
356
|
+
|
|
357
|
+
## React Native Onboarding is created by Software Mansion
|
|
358
|
+
|
|
359
|
+
[](https://swmansion.com)
|
|
360
|
+
|
|
361
|
+
Since 2012 [Software Mansion](https://swmansion.com) is a software agency with
|
|
362
|
+
experience in building web and mobile apps. We are Core React Native
|
|
363
|
+
Contributors and experts in dealing with all kinds of React Native issues. We
|
|
364
|
+
can help you build your next dream product –
|
|
365
|
+
[Hire us](https://swmansion.com/contact/projects?utm_source=typegpu&utm_medium=readme).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blazejkustra/react-native-onboarding",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Onboarding/tutorial flow for React Native.",
|
|
5
5
|
"main": "./lib/module/index.js",
|
|
6
6
|
"types": "./lib/typescript/src/index.d.ts",
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
],
|
|
50
50
|
"repository": {
|
|
51
51
|
"type": "git",
|
|
52
|
-
"url": "git+https://github.com/
|
|
52
|
+
"url": "git+https://github.com/software-mansion-labs/react-native-onboarding.git"
|
|
53
53
|
},
|
|
54
54
|
"author": "Blazej Kustra <kustrablazej@gmail.com> (https://github.com/blazejkustra)",
|
|
55
55
|
"license": "MIT",
|
|
56
56
|
"bugs": {
|
|
57
|
-
"url": "https://github.com/
|
|
57
|
+
"url": "https://github.com/software-mansion-labs/react-native-onboarding/issues"
|
|
58
58
|
},
|
|
59
|
-
"homepage": "https://github.com/
|
|
59
|
+
"homepage": "https://github.com/software-mansion-labs/react-native-onboarding#readme",
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"registry": "https://registry.npmjs.org/"
|
|
62
62
|
},
|