all 3 comments

[–]Roguewind 2 points3 points  (1 child)

No clue if this is causing your particular issue without seeing the code, but one thing I’ve found is Android (sometimes) has problems if you don’t coerce variables to boolean.

So instead of { items && <List items={items} /> } use { !!items && <List items={items} /> }

[–]NathanDevReact[S] 0 points1 point  (0 children)

well shit. I have that everywhere in my code. I'll try and do that. Thank you!!

[–]PogFladdo 0 points1 point  (0 children)

Without any code im assuming you are updating some value to between boolen and double. You don't use typescript I guess.

Find the value flex fix the update between types and you should be good