changtimwu / changtimwu.github.com

Tim's testing/practice notes
7 stars 2 forks source link

ReactNative #83

Open changtimwu opened 6 years ago

changtimwu commented 6 years ago

official

others

changtimwu commented 6 years ago

react redux typescript static typing guide https://github.com/piotrwitek/react-redux-typescript-guide

changtimwu commented 6 years ago

looks good https://github.com/airbnb/lottie-react-native

changtimwu commented 6 years ago

about statex https://github.com/rintoj/statex/tree/master/examples/todo-react-ts

four roles

changtimwu commented 6 years ago
changtimwu commented 6 years ago

mobx

basic points

some trace points

MST

changtimwu commented 6 years ago

http://eddychang.me/blog/16-javascript/45-spread-operator-rest-parameters.html

let aobj={a:1,b:2}
let dobj={g:'yes', ...aobj}
console.log(dobj)
//{ g: 'yes', a: 1, b: 2 }
let alist=[7,9,8]
let clist=[1,2,...alist]
console.log(clist)
// [ 1, 2, 7, 9, 8 ]
changtimwu commented 6 years ago

run on iOS device

https://facebook.github.io/react-native/docs/running-on-device.html

changtimwu commented 6 years ago

Acceptance test for RN https://calaba.sh/