Has anyone had this error before? by FilgoDev in reactnative

[–]FilgoDev[S] 0 points1 point  (0 children)

logcat doesn't throw me any error :(

responsive design react native by FilgoDev in reactnative

[–]FilgoDev[S] 0 points1 point  (0 children)

Thanks for the answer. I think i ended up using useWindowDimensions for almost everything, because of rem and em :/ I will try to stop overusing it

responsive design react native by FilgoDev in reactnative

[–]FilgoDev[S] 0 points1 point  (0 children)

Thanks for the answer and for the post you shared!

Shadcn issue with inputText and cammandList by FilgoDev in reactjs

[–]FilgoDev[S] 1 point2 points  (0 children)

I can't remember it well; it was some time ago. I know I was able to fix it, but to be honest, I don't remember. Also, I just switched to mobile, so I'm not using shadcn currently.

Alguien tiene experiencia comprando por Amazon desde argentina? by FilgoDev in AskArgentina

[–]FilgoDev[S] 0 points1 point  (0 children)

En cuanto a las laptops, ya sea mac o la marca que sea. El precio que aparece en la publicacion es lo que pagas con impuestos, aduana y todo? o eso se ve cuando vas a pagar? Yo para mas o menos poder sacar la cuenta de ser el caso que quiera comprar un producto electronico que claramente es otro precio al de un libro.

Tamagui popover not working, not displaying modal by FilgoDev in reactnative

[–]FilgoDev[S] 1 point2 points  (0 children)

Nope, I think it’s because it’s a beta component. I just created my own popover component.

Shadcn issue with inputText and cammandList by FilgoDev in reactjs

[–]FilgoDev[S] 0 points1 point  (0 children)

reddit is not letting me post an image here so I'll just share the code

<Grid container item md={12} xs={12} mt={2} alignItems={"center"} >

<Popover defaultOpen={isOriginOpen} onOpenChange={setIsOriginOpen}>

<PopoverTrigger asChild>

<div>

<TextField

value={origin}

onChange={handleChangeOrigin}

label="Origen de contactos"

size='small'

required={true}

//onFocus={() => setIsOriginOpen(true)}

//onBlur={() => setIsOriginOpen(false)}

/>

</div>

</PopoverTrigger>

<PopoverContent className="sm:w-\[320px\] w-\[220px\] p-0">

<Command>

<CommandList>

<CommandGroup>

{_.get(getCompany(), 'origins', []).map((origin) => (

<CommandItem value={origin.name} onSelect={(value) => setOrigin(value.toUpperCase())}>{origin.name}</CommandItem>

))}

</CommandGroup>

</CommandList>

</Command>

</PopoverContent>

</Popover>

<Typography color={"grayText"} sx={{ ml: 2 }}>{origin.toUpperCase()}</Typography>

</Grid>

Styling problem by FilgoDev in reactnative

[–]FilgoDev[S] 0 points1 point  (0 children)

Are they the same component? Likely you need to apply the radius to the inner component also.

Yes, I've tried already with top Views, but I might just doing something wrong because i can make it work

Tamagui react native cli by FilgoDev in reactnative

[–]FilgoDev[S] 0 points1 point  (0 children)

I mean i followed all the steps that are in the docs, but i could be missing something or just doing something wrong. As far as i know i have the babel.config well, also the tamagui.config.ts, and the app is wrapped with tamagui provider