Oscar Franco

Results 232 comments of Oscar Franco

I just tried installing native wind 4.1.21 and getting this error on a vanilla RN project. Any workaround or solution?

Just lost a lot of time because the documentation is indeed wrong. It also doesn't seem to be working properly. I'm trying to remap a FlatList contentContainerStyle and with className...

Apparently `contentContainerClassName` has already been patched by native wind. Still even after changing the name it doesn't work. Another question would be how to patch the types. ![Oscar Franco Screen...

Seems on the latest version `4.0.36` `contentContainerClassName` has been fixed but remapProps does not work. Documentation is still wrong though, so that is worth taking a look. ![Oscar Franco Screen...

I managed to get this working, seems the `cssInterop` call is passing an array of props and not and object, therefore the destructuring is actually not working: ```tsx import {requireNativeComponent,...

Yeah, the last comment showed how i worked around it

For reference I got my app to compile using the following: ```rust fn main() { if cfg!(target_os = "macos") { println!("cargo:rustc-link-arg=-Wl,-undefined,dynamic_lookup,-lomp,-L/opt/homebrew/opt/libomp/lib"); } else if cfg!(target_os = "linux") { println!("cargo:rustc-link-arg=-Wl,-undefined,dynamic_lookup,-lstdc++"); }...

I just stumbled upon mock_app(): ```rust let app = tauri::test::mock_app(); ``` That seems to work. Would be great to have this documented better.

In order to create an app with the JS bindings I needed to test I had to do it this way, not sure if it is the correct way but...

Pressing the enter key should copy the result to the clipboard. I'll take a look later, thanks for noticing!