https://gluestack.io/ui/docs/components/textareaThe following example code from the above docs renders the input box correctly but doesn't show scrollbar on android but shows scrollbar on ios and web. Is this a known issue ?
import { Textarea, TextareaInput } from "@/components/ui/textarea";
function Example() {
return (
<Textarea size="lg" isReadOnly={false} isInvalid={false} isDisabled={false} className="w-64">
<TextareaInput
placeholder="Your text goes here..."
/>
</Textarea>
);
}