8000 GitHub - zhaoyul/reagent-react-native: Example App using reagent with react-native via shadow-cljs
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

zhaoyul/reagent-react-native

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

$ npm install && cd react-native && npm install
$ shadow-cljs watch app

;; wait for first compile to finish or metro gets confused
$ cd react-native

$ npm start
;; and
$ react-native run-android

;; production build
$ shadow-cljs release app

;; Create Android release
$ cd react-native/android
$ ./gradlew assembleRelease
;; APK should appear at android/app/build/outputs/apk/release
;; installs in Android as "Hello App Display Name"

Notes

The react-native folder was generated by calling react-native init AwesomeProject and renaming the folder.

The :app build will create an react-native/app/index.js. In release mode that is the only file needed. In dev mode the app directory will contain many more .js files.

:init-fn is called after all files are loaded and in the case of expo must render something synchronously as it will otherwise complain about a missing root component.

reagent.core loads reagent.dom which will load react-dom which we don't have or need. Including the src/main/reagent/dom.cljs to create an empty shell. Copied from re-natal.

About

Example App using reagent with react-native via shadow-cljs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Clojure 56.6%
  • Objective-C 16.8%
  • Ruby 11.3%
  • Java 10.6%
  • Starlark 2.4%
  • JavaScript 2.3%
0