Drew André
Drew André
Thanks, this is the last item before I'm fully able to switch over from arduino-esp32 to a full esp-idf environment. Let me know if I can help at all or...
Hi @bbulkow, just wondering if you ever heard back from Yves? Would this issue be better suited on one of his github repos? Let me know if I can help...
All files that import FastLED.h need to be .cpp files. Have you made this change? For example my project which uses FastLED-idf + esp-homekit-sdk has an app_main.cpp file, and all...
You dropped _just_ [the FastLED-idf component](https://github.com/bbulkow/FastLED-idf/tree/master/components/FastLED-idf) into your components folder, right? Make sure you didn't put this entire repository in your components folder because the actual FastLED-idf component is inside...
What does your CMakeLists.txt look like? Make sure to include the .cpp files you were referencing above. Here is mine: ``` idf_component_register( SRCS app_main.cpp lightbulb.cpp # ... other files INCLUDE_DIRS...
I just had to export a dummy function to get my new native module to work/importable ``` RCT_EXPORT_METHOD(getModuleList: (RCTResponseSenderBlock)callback) { NSArray *nativeModuleList = @[@"react-native-fbsdk", @"react-native-camera", @"react-native-maps"]; callback(@[nativeModuleList]); } // call...
@FawadMahmood could you provide a code example?
@IjzerenHein I'm also curious how a video transition would behave. I got an example up and running locally, but I see the same issue as @FawadMahmood. Images and other views...
I've created [an example repo](https://github.com/drewandre/react-navigation-shared-element-issue-96-repro) to demonstrate this issue. It's a fork from the latest [react-navigation-shared-element-demo](https://github.com/IjzerenHein/react-navigation-shared-element-demo) repo. Below is a gif showing how the video pauses. Ideally the `` component...
Any updates on this? I'm seeing the same issue but our application is dual mode BT classic/BLE so enabling controller br/edr only is not an option