Package Exports
- react-native-wiz
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-wiz) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Native Wiz
A beautiful Wizard for React Native

React Native Wiz is in early development stage and has been tested exclusively on iOS. Use at your own risk. Installation
- npm:
npm install react-native-wiz - yarn:
yarn add react-native-wiz
Add to the top of each component accessing the Wiz library.
import Wiz from 'react-native-wiz'Usage
- Wrap your wizard(s) or whole application inside the Wiz provider e.g. inside App.js
<Wiz.Provider>
<View style={{ flex: 1 }}>
<Text>My Amazing App</Text>
</View>
</Wiz.Provider>- Start wrapping each of the elements you want to be highlighted inside a
<Wiz.Item>. Make sure to provide a unique ID for each new item.
<Wiz.Item
wiz="default"
id="example"
enabled={true}
autoPlay={true}
completed={false}>
<TouchableOpacity>
<Text>My Button</Text>
</TouchableOpacity>
</Wiz.Item>Props
| Prop | Description |
|---|---|
| wiz | The ID of the wizard this item belongs to (optional). Use this when you need multiple wizards |
| id | A unique ID, required for each item |
| enabled | Enable or disable the item. Defaults to true |
| autoPlay | Boolean determining whether or not the wizards hould start by itself. Use with care and only on the first item in a wizard. Defaults to false |
| queue | Position in queue. Use this to configure the playing order. Defaults to 0 |
| completed | After setting this prop to true the next item will appear |
| image | Description image URI (optional) |
| imageOffset | Image offset from item pos (object) { x: int, y: int } |
| delay | Time in ms after which in item should show. Defaults to 0 |
| onActive | Function. Runs when the item becomes active |
Methods
Methods can be accesed through the component ref.
onSomething() {
myWizardItem.show()
}
return (
<Wiz.Item
id="example"
ref={ref => myWizardItem = ref}>
...
</Wiz.Item>
)show()
Shows the item.
complete()
Same funcionality as the completed prop. Running this method will mark the item as complete and show the first next item in queue. If there are no items left in the queue, the onWizComplete prop will run on each Item component.
Using multiple wizards
You can easily add multiple wizards.
- Add a
wizprop to each item to attach it to the appropriate wizard like so:
<Wiz.Item
wiz="profileWizard"
id="myAwesomeButton">
...
</Wiz.Item>- Next, determine the order/position in queue for each item with the
queueprop.
<Wiz.Item
wiz="profileWizard"
id="myAwesomeButton"
queue={1}>
...
</Wiz.Item>
<Wiz.Item
wiz="profileWizard"
id="myAwesomeMenu"
queue={2}>
...
</Wiz.Item>This way, myAwesomeMenu will not appear until myAwesomeButton is completed.