Disabling/Enabling Feature Requests for React Native
Described here is how to disable or enable the feature requests for your React Native apps.
You can completely prevent any feature request related features from displaying by disabling it using the API below.
//Enable
FeatureRequests.setEnabled(true);
//Disable
FeatureRequests.setEnabled(false);
Updated about 1 year ago