1) I'm working with Material UI in React JS. I have added a simple scrollable code, but when I reach the bottom of the screen/scroll, it freezes.
2) I also tried it with a simple HTML page and it worked correctly.
<div
style={{
height: 400,
overflowY: "scroll",
WebkitOverflowScrolling: "touch"
}}
>
{Arr.map((rec, i) => {
return <h1 key={i}>{rec}</h1>;
})}
</div>
Please help me figure out what's wrong...
This issue only occurs on IOS Chrome.
Thank you in advance! :D