π±πππ’π
π±πππ’π
Hey guys! I've come up with this setup https://github.com/kanzitelli/shopify-app-template-typescript. Fully bootstrapped from their template and just wrapped with TS configuration (not an expert tho). I've been testing on my machine...
Hey @remyoswalt! I've faced the same issue, however the error is coming for `js` files from `ts` setup which is weird. The workaround with `js` files for this is to...
@remyoswalt sure, you can try these lines of code for `js`: ```js if (app.get("active-shopify-shops")[String(shop)] === undefined && shop) { res.redirect(`/auth?${new URLSearchParams(Object(req.query)).toString()}`); } else { next(); } ``` Basically, you just...
Hey @Yasir5247, this kind of issues is not relevant to this repo as itβs not a library or package, itβs just a RN app with opinionated project structure. However, from...
Hi @felixmosh! Thank you π I have never had the experience of setting up a monorepo with this starter, unfortunately. Maybe if you share the errors, I might help you...
Hey @felixmosh! Sorry, I've been super busy these days but I still don't have a solution for the issue you have raised :( I will keep this issue open just...
The same happens to me with `6.20.*` version. When downgrading to `6.18.*`, View changes background color correctly when toggling appearance mode.
hey @lidord-wix @sallar after digging into the code and using the power of `console.log`s, I've found out that when toggling appearance in system mode, [`themeProps`](https://github.com/wix/react-native-ui-lib/blob/master/src/components/view/index.tsx#L59) are not being updated for...
hey @sallar! Great to hear that! It would be great if you could elaborate more on default design tokens. I couldn't find any information about them in [RN UI Lib...
@sallar that's great! I've never used design tokens tbh, they seem nice to use. The only import of `designTokens` is [here](https://github.com/wix/react-native-ui-lib/blob/master/src/style/colors.ts#L20) and seems to be loading schemes correctly. Probably it...