Moon-009 / react-native-chartjs

19 stars 24 forks source link

iOS warning scalesPageToFit #8

Open RPaulC opened 5 years ago

RPaulC commented 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.

Moon-009 commented 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.