Results 71 comments of Darron Park

@rosnaib11 I haven't experienced stationary issue. Would you submit an issue with additional information on my repo?

Sorry but I don't have enough time to write CHANGELOG. BTW you can check the difference through github compare page. https://github.com/darron1217/react-native-background-geolocation/compare/f0d434291cfae4a0e510e1e7a05d4e1e7508870e...3e9933eed745ba42118c58b8e04926d7078bae35

@m-emre-yalcin Thanks, but I meant `Auto Generated REST apis`. Sure we can make it manually, but if there's plan to add bulk edit & update for default, it would be...

@rvachev I don't have much time to maintain this plugin. Would you please create a PR to support v4?

Take a look at my answer https://github.com/ascoders/react-native-image-zoom/issues/42#issuecomment-734209924

The solution above not worked well on Android. So I upgraded `ImageZoom` into the code below. And it works well now. ```js const ImageViewer: FC = ({ source, width =...

How about adding getter and setter on model’s js file? For example on `api/student/models/student.js` ```js module.exports = { virtualAttributes: { fullName: { // getter get(model) { return `${model.firstName} ${model.lastName}` },...

How about implement it as `custom field type`? Then we can create `CombinedText` type and define getter, setter, filter handler... etc on custom area. And then just select field type...

I usually fix those kind of scroll problem by using code below. (This supports both native and js scroll) `var event = event.originalEvent || event;` `var scrollTop = event.detail ?...