Category: React Native Issues
NavigatorIOS: Accessing onRightButtonPress from within child component
I’m creating a TodoList example app using Flux. Right now I have three components: TodoListApp, TodoItems and AddItem. TodoListApp is simply a NavigatorIOS component which…
Support for separators in ListView
Row separators are non-trivial to do and ListView could help by providing them out of the box in a way that’s easier to use than…
TextInput inside View doesn’t work
<View> <TextInput placeholder=”This works” /> <View> <TextInput placeholder=”This doesn’t work” /> </View> </View> The sample project with this bug is here – https://github.com/boopathi/textinputbug Am I…
Inverted ListView that renders from the bottom up
Inverted lists are useful for UIs like terminals, event logs, chat, etc… where you want to insert new content from the bottom and load old…
TouchableHighlight vs TouchableWithoutFeedback
I noticed a huge issue with TouchableHighlight where there is a significant delay with the onPressIn method being called, making this component next to unusable…
[Discussion: Timers] Background execution and ordering semantics
I wanted to start a discussion about the timers and an API that exposes the capabilities of the system timers. A couple of things I…
[Bridge] Allow RCTViewManager to define view instance methods exposed to JS
(Related to the discussion in #114) The gist of what I want to do is to call methods on view instances where setting a prop…
If you name your app with hyphens react-native will create a broken project by default
If you do something like: react-native init my-native-app React will create a project scaffold for you but the resulting javascript file will fail to load….
Require Non-JS Files
I know there is discussion in other threads going on about webpack and having that would fix this issue. However in the meantime there are…
Enabling Geolocation
Hey, When I try to use the Geolocation, I get: message: undefined is not an object (evaluating ‘RCTLocationObserver.getCurrentPosition’)” It seems that require(‘NativeModules’).LocationObserver returns undefined in…