Skip to content

Releases: thecodingmachine/react-native-boilerplate

v2.1.1

05 Nov 10:55
c85cc07
Compare
Choose a tag to compare
  • Fix issue with dot files (especially .gitignore) which were not copied from the template (#127)
    • RN CLI will automatically copy some _ files to . files

v2.1.0

04 Nov 14:23
Compare
Choose a tag to compare

v2.0.2

27 Oct 16:32
Compare
Choose a tag to compare

Erratum : no 2.0.1 version is available on Github due to a mistake on npm publishing.

  • no more src/Config/index.dev.js, src/Config/index.staging.js, and src/Config/index.production.js file, just a src/Config/index.example.js
  • fix issue on post-init.script.js(see #117 )
  • automatic copy of src/Config/index.example.js file inside the post init script

v2.0.0

22 Oct 11:38
Compare
Choose a tag to compare

We are really proud to announce a new major version of this boilerplate 🎉

After many apps deployed with the V1, experience gives us the necessary perspective to improve some parts.

One of the global new features is the elegant usage directly within the React Native CLI, thanks to the ---template option of the react-native init script.
No more complication with some cloning or renaming. Just one command :

npx react-native init MyApp --template @thecodingmachine/react-native-boilerplate

The main goal of this boilerplate is to “Keep it simple”. That’s why :

What has been added :

What has been updated :

  • React-Native (latest version of all dependencies)
  • React Navigation
  • Redux architecture (no more Saga, but the usage of Thunk with the Redux Toolkit)
  • The Theme directory
  • Root navigation with inline require
  • Simplify the whole code
  • Simplify the whole usage

What has been removed :

  • Redux-Saga
  • The rename dependency
  • Redux sauce

If you need some explanation about “why” we made some choices, don’t hesitate to create an issue. It’s always important to discuss it, and we are open to suggestions.

v1.0.4

02 Sep 12:05
7d962ca
Compare
Choose a tag to compare
  • Rewrite all code based on React Hooks and Redux Hooks (see #105) 🚀
  • Deeplink implementation (see #112, #95) 🎉
  • Dependencies update (see #92, #93, #102 , #108)
  • Minor changes (see #98, #101, #109, #111 )

v1.0.3

04 Dec 13:53
55864a2
Compare
Choose a tag to compare
  • Upgrade React Native version from 0.60.5 to 0.61.5
  • Refactor theming to use Helpers and change the Fonts export (see PR #83 )
  • Minor changes of README (see PR #88 and #89 )

v1.0.2

21 Sep 14:59
5be8f30
Compare
Choose a tag to compare
  • Upgrade react-navigation to the last 3.x version (3.11.2) to avoid some warnings (#75 #76)

v1.0.1

18 Sep 07:32
Compare
Choose a tag to compare

This release add some minor improvements :

  • Adding scroll views helpers :
scrollSpaceBetween: {
    flexGrow: 1,
    justifyContent: 'space-between',
  },
  selfStretch: {
    alignSelf: 'stretch',
  },
  • Refactoring App/Themes/Metrics.js

PR merged : #69

v1.0.0

17 Sep 20:00
3925f13
Compare
Choose a tag to compare

This first release is related to this following suggestion.

All major upgrades will be described in the Release section, to help each one to see the evolution of the repository.

So let's do it !