You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Android progress is a value between 0 to 1, while on iOS the progress is a value between 0 to 100 which results in an inconsistent API that forces me to handle it this way:
map(status=>// Workaround that Android emits the progress from 0 to 1this.isAndroid
? (status.valueasnumber)
: (status.valueasnumber)/100),
The text was updated successfully, but these errors were encountered:
On Android progress is a value between 0 to 1, while on iOS the progress is a value between 0 to 100 which results in an inconsistent API that forces me to handle it this way:
The text was updated successfully, but these errors were encountered: