Michael Tran

Results 6 comments of Michael Tran

This article resolve this issue for me. https://handi.dev/blog/how-run-react-native-on-macbook-m1-apple-silicon

> > This article resolve this issue for me. https://handi.dev/blog/how-run-react-native-on-macbook-m1-apple-silicon > > I don't know how you have done it, but when I try to build it throws the same...

I did this and a little more on my fork if anyone is interested. Feel free to take whatever you need since my changes are **breaking changes** and I didn't...

This is still an issue as it tries to convert a `string` id into a number before performing the search query. https://github.com/vuex-orm/plugin-graphql/blob/50d0bb689bcc8dd7b0db4692ca51f2596621db6c/src/orm/model.ts#L267

something like this ``` constructor(props) { super(props) this.state = { qrcode: '' } } onBarCodeRead={(code) => { if (code.data != this.state.qrcode) { this.setState({qrcode: code.data}) Alert(code) } }} ```