Max

Results 387 comments of Max

How is interpreted the suffix? I mean can we have 2 modules with the same interface? What js filename will have `Module.ios.res` & `Module.android.res`? Is this working if we want...

Yes because currently React Native allows different implementation of a same component for different platform (I mentioned iOS and Android but it can be web, Windows, macOS...). Components should have...

I am facing the same problem. My context is that I have plenty of dropdown, that should be small, but the hardcoded height in the codebase, that cannot be override...

For macOS, just edit the script function `find_chrome` with ``` def find_chrome(): paths = ['/usr/bin/chromium-browser', '/usr/bin/google-chrome', '/usr/bin/google-chrome-stable', '/snap/bin/chromium', '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome'] ```

Web have display: contents that mighty be helpful.

I guess my config could help to start a doc for vite https://github.com/facebook/react-strict-dom/discussions/430#discussioncomment-15146095

Using TypeScript, a safe way to get a Date object is to do the following ```ts onChange={({ date }) => { if (date && typeof date === "object" && "toDate"...