badal

Results 31 comments of badal

```js const div = document.createElement('div'); new QRCode(div, "http://jindo.dev.naver.com/collie"); const src = div.children[0].toDataURL("image/png"); console.info('src', src); ``` https://github.com/davidshimjs/qrcodejs/issues/160#issuecomment-517582403

Alternative solution https://github.com/gorhom/react-native-bottom-sheet/pull/1513#issuecomment-1790589392

@antoinerousseau I used `rn-range-slider` library to implement.

@somebody32 anyway to integrate this fix till it gets merged?

Till then ```js const schema = z.object({ meetingLink: z .string() .refine((value) => /^(https?):\/\/(?=.*\.[a-z]{2,})[^\s$.?#].[^\s]*$/i.test(value), { message: 'Please enter a valid URL', }), }); ```

For now as a workaround one can override the styles by directly setting the theme on `stylesheet.calendar.main` property like this ```jsx ```

```js const validationSchema = Yup.object().shape( { phone: Yup.string() .nullable() .notRequired() .when(['phone'], (value, schema) => { if (Number(value) > Number(phoneCode)) { return schema .required() .min(MIN_PHONE_NUMBER_LENGTH_WITH_PHONE_CODE, 'Should not be less than 8...

@felipejh Did you fix this? I need to create an archive in Xcode using the `.env.development` file, but it always picks the `.env` even in debug config cc @goatandsheep