Skip to content

Hands πŸ‘ on MobX πŸ“ in React-Native πŸ“±

Notifications You must be signed in to change notification settings

vaibhavpadalia/react-native-mobx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

13 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Using MobX with React Native

Create a new react native project using:
react-native init mobxProject.

Now to use MobX install the following:
npm install --save mobx
npm install --save mobx-react.

Use 4.3.1 for Mobx and 5.2.3 for Mobx React.

To make mobx functional you have to install babel-plugin-transform-decorators-legacy using:

npm i babel-plugin-transform-decorators-legacy --save-dev

Now update the .babelrc:
{ "presets": ["react-native"], "plugins": ["transform-decorators-legacy"] }

If you are using any version >=0.56 of react native then there are some changes for it. Install @babel/plugin-proposal-decorators instead of babel-plugin-transform-decorators-legacy. And then change the configuration of .babelrc with the following lines:

{ "presets": ["react-native"], "plugins": [ [ "@babel/plugin-proposal-decorators", { "legacy": true } ] ] }

There are two ways to use Mobx:

  • Pass it down via Provider.
  • Create a store and import it in the components where it is required.

In the first method the global state variables will be accessible with the help of props.

Eg:

<Provider someStore={someStore}>
<ChildComponent />
</Provider>

Then make the class @observer where this store is to be accessed and the value of the store will be present inside the props, i.e. this.props.store.property

The second way is way simpler than the first. You simply have to import the store and then you can simply access it using the import like:

import { store } from "somestore"

And then use the properties of the store using: store.property.

About

Hands πŸ‘ on MobX πŸ“ in React-Native πŸ“±

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages