Injung Chung

Results 6 comments of Injung Chung

Or you can just use `expo-build-properties` as follows: ```js const config = { expo: { // ... plugins: [ [ 'expo-build-properties', { android: { extraMavenRepos: ['$rootDir/../../../node_modules/@notifee/react-native/android/libs'], } }, ], ],...

`RadioGroup`'s child component should have `value`, `index` props. If `Option` component just renders `RadioButton`, why don't you use it directly? ```javascript const pathOptions = this.props.location.data.paths.map((option, i) => { return })...

Got it! you may have to pull button tag outside of the `RadioGroup` component :)

`onRadioGroupChange` function may change state to selected radio button value (lets say `radioValue`) like this: ```javascript const onRadioGroupChange = (value) => this.setState({ ...this.state, radioValue: value }); ``` Then pass `value`...

I strongly agree with your opinion. PR is welcomed at any time!

Hi. Thank you for your PR :) However `lib/index.js` is transpiled code - i.e. you should edit index.jsx in root folder.