gluestack

gluestack Logogluestack

TextareaInput doesn't show scrollbar on android but scrollbar is visible on ios and web.

elite_70934 posted this in #support
Open in Discord
Avatar
elite_70934OP
https://gluestack.io/ui/docs/components/textarea

The 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>
);
}

1 Reply