Questions tagged [react-native-fabric]
8 questions
2
votes
1 answer
Integration Android Fragment in react native's fabric architecture leads to blank view
I am trying to integrate Android Fragment with react native's new architecture fabric. I am following the guide from over here unfortunately they have not specified any docs for integrating fragment so I was taking help from the old architecture…

BraveEvidence
- 53
- 11
- 45
- 119
1
vote
1 answer
How to avoid setting manual UIView width and height on native side for Fabric component when using CAGradientLayer?
I am trying to create a fabric module for iOS using react-native's new architecture
In my objective-c++ file while setting a UIView, I have to assign a CGRect at time of init of UIView. If I don't on the native side and just give it on js side the…

BraveEvidence
- 53
- 11
- 45
- 119
0
votes
0 answers
Turbo Module and Fabric Component, can we share a UIView / Surface View between them?
I have an iOS and Android SDK which is made for classic (XCode/Android Studio) mobile development.
In this SDK, we use a Controller to do offscreen things like loading data and other stuff.
But we can also create a View or UIView, pass it to the…

SuperCed
- 53
- 5
0
votes
0 answers
Enable Fabric in react-native 0.71 using ReactFragment in android
I am currently having a usecase where I need to start my react-native component using ReactFragment using following syntax
val reactNativeFragment: Fragment = ReactFragment.Builder()
.setComponentName("ComponentName")
…

Manish Patiyal
- 4,427
- 5
- 21
- 35
0
votes
0 answers
Fabric compatibility for 'lottie-react-native' library in ios
Getting the following error while running lottie animation in react native app with fabric enabled.
Unimplemented component LottieAnimationView output screen
0
votes
0 answers
useNativeDriver post migration to fabric architecture
React native Animated uses the useNativeDriver flag to offload computation of animations to the native side and avoids repeated serialization via the bridge.
How does this situation change with the introduction of fabric? Do we get rid of the…

Kilian
- 1,540
- 16
- 28
0
votes
1 answer
Fetch not working in React Native new architecture
Can't seem to get fetch() working in my React Native app (should work out of the box). Using the new architecture with RN 0.70.4, TypeScript, and a setup to import ES modules.
Every time fetch() is called, this error is printed in the…

nerdlinger
- 1,610
- 2
- 17
- 24
0
votes
0 answers
No matching function for call to 'fromRawValue'
I'm trying to build a fabric native react component, and I'm following the steps as outlined here: https://reactnative.dev/docs/next/the-new-architecture/pillars-fabric-components
When I use codegen to generate the props from my…

Kalyan Rangarajan
- 13
- 4