jordenchang55
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? 
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"} ```