mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Making setFabricEnabled Flag optional for ReactFragments (#41211)
Summary: Making setFabricEnabled Flag optional for ReactFragments ## Changelog: [ANDROID][CHANGED] - Continuation of PR: 36263 Pull Request resolved: https://github.com/facebook/react-native/pull/41211 Test Plan: Kotlin Code Snippet to test: ``` supportFragmentManager .beginTransaction() .add(android.R.id.content, ReactFragment.Builder() .setComponentName("componentName") .setFabricEnabled(true) .build()) .commit() ``` Reviewed By: cipolleschi Differential Revision: D50732345 Pulled By: cortinico fbshipit-source-id: 812fe1abeb8c09334bd755ce3a29f55ce8b7ac7b
This commit is contained in:
committed by
Facebook GitHub Bot
parent
a2f3fa65bc
commit
a337f6eda7
+1
-1
@@ -181,7 +181,7 @@ public class ReactFragment extends Fragment implements PermissionAwareActivity {
|
||||
public Builder() {
|
||||
mComponentName = null;
|
||||
mLaunchOptions = null;
|
||||
mFabricEnabled = null;
|
||||
mFabricEnabled = false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user