André Vendramini

Results 19 comments of André Vendramini

@JesusTheHun You were right, I had a wrong call for state change here. My case is: I have a tabbed modal and they are being linked like `?modal=settings&tab=account|billing|invoices|etc`. Each tab...

I don't think that any others types but 'text' would work properly. You could try adding inputMode='numeric' and a pattern='\d*'.

Here too: ```javascript const diffMonth = to.diff(from, 'month'); console.log({fromParam, toParam, diffMonth, diffMonth2: to.get('month') - from.get('month')}); ``` `{fromParam: '2023-05-29', toParam: '2023-07-02', diffMonth: 1, diffMonth2: 2}` "dayjs": "^1.11.7"

On the onChange function, you should verify what options was selected. Then, just recreate your model. You could create a function `createFields(value)` that returns your model based on your value,...

You can't. You have to use templates instead. The original `select` from source code is: ```javascript return ( {label} {options} {help} {error} ); ``` Just copy/paste the files (android and...

> Page could not be found. Go back. exp://192.168.29.59:8081/--/oauth-native-callback Sitemap > > I am getting this error everytime after a successful oauth authentication with using Clerk. I am beginner and...

> @vendramini How I can handle if I have redirect url as exp://com.myapp.androidapp/Oodlasdioadlasid=asdkuasd? In this case, I think you can handle the parameters inside your `index.tsx` with https://docs.expo.dev/router/reference/search-parameters/ and put...