I need to set useNativeScrolling = true on a particular view (for Android only) and can't seem to figure it out. I assumed it would be as easy as:
if (device.platform === "iOS")
// {
console.log("ios");
app.view().useNativeScrolling = false;
}
But that doesn't seem to do anything. I'm sure it's simple.