Dan

Results 3 issues of Dan

https://facebook.github.io/react-native/docs/dimensions.html @alleycat-at-git I noticed that dimensions are set in style file. Does this work when you move your device from portrait to landscape mode?

Why not use https://facebook.github.io/react-native/docs/touchableopacity.html#touchableopacity instead of: ``` const TouchableElement = Platform.OS === 'android' ? TouchableNativeFeedback : TouchableHighlight; ``` Don't you get warnings about missing key? `renderRow={(comment) => } ` Do...

Should we introduce an utils to reduce boilerplate for action creators? ``` function makeActionCreator(type, ...argNames) { return function(...args) { let action = { type } argNames.forEach((arg, index) => { action[argNames[index]]...

enhancement