Gökhan Kurt
Gökhan Kurt
@timcassell thanks for the info. I could remove some boilerplate from [my workflow file](https://github.com/ReactUnity/core/commit/3d050bf155ce093b9a5b237d6f2b19832c2045e6).
@agnostic-apollo I installed the Termux from Github Actions build. "All files access" permission did finally appear for Termux and I granted it. But when I check for groups in Termux,...
Indeed. I installed an Android 14 ROM and after rooting, termux seems to have `external_storage` group. To make the external storage access work better, I had to enable FUSE passthrough...
Issue seems to persist in 0.47.0. Any updates?
Related issue: #461 #3146 I investigated this a bit. I tried adding a "pseudo" element before and after the element to be tagged to effectively wrap and identify the element,...
Currently I see two issues with `setSearchParams`. - It is not stable - It doesn't pass the latest value in its callback function (see @maastrich's comment). This can be worked-around...
Per your logic, I shouldn't be able to pass `{}`, because it would be invalid for `postRoute`, but I can. What I am coming to is, whenever `params` accepts `{}`,...
I get your point. But trying to achieve perfect type safety seems futile to me. People will eventually need escape-hatches and `string` seems like the best type for that. This...
There is another alternative. The problem with current callback refs is, `null` means that the element is unmounted. However, this may not always be the case. With `useImperativeHandle`, the element...
@jacobp100 As far as I understand, this change does not affect the behavior of your first code. `null` will still propagate to `passedRef`. However, if `passedRef` expects `null` to be...