Open RPaulC opened 5 years ago
There is a warning on iOS devices connected to the scalesPageToFit(proprety is not supported when useWebKite = true).
The line scalesPageToFit={Platform.OS === 'ios' ? false : true}
should be replaced by scalesPageToFit={Platform.OS === 'ios' ? undefined : true}
Undefined in place of "false" is a better practice.
Thank you.
Thank you. I will try it.
There is a warning on iOS devices connected to the scalesPageToFit(proprety is not supported when useWebKite = true).
The line scalesPageToFit={Platform.OS === 'ios' ? false : true}
should be replaced by scalesPageToFit={Platform.OS === 'ios' ? undefined : true}
Undefined in place of "false" is a better practice.
Thank you.