jordenchang55

Results 7 comments of jordenchang55

If I use intent/url to open app, this warning will always show. I follow the instruction on [ReactNative](https://facebook.github.io/react-native/docs/linking) to set the `launchMode` to `singleTask`

@madox2 Do you means the backdrop effect can be implemented by set style in custom styles of `MenuOptions`? Can you give a example?

You can use a 2d array. Like this: ```javascript [ [ // This for drawing first line {x: 1, y: 1} ], [ // This for drawing second line. Put...

I might misunderstanding your meaning. I plot the chart based your data above. Is this what your want to do? ![simulator screen shot 2017 9 16 5 04 56](https://user-images.githubusercontent.com/8519084/30503470-eb01999a-9a9c-11e7-83f0-9eeb52cf8fe6.png)

I transform your data like this. ```javascript let originData = [ { x: 0, yValue: 47782, zValue: 53722 }, { x: 1, yValue: 48497, zValue: 73722 }, { x: 2,...

I did a tricky to achieve this. Define `visible` in `state` and `props` respectively. Check the change of `this.props.visible`. ```javascript componentWillReceiveProps(newProps) { if (this.props.visible !== newProps.visible) { if (newProps.visible) {...

Yes, I also encounter this issue. Add this to your style should resolve it. ```javascript {position: "absolute"} ```