I have one general questions and two more specific ones.
- How can I tell from a yellowbox warning message how to ignore it in React-Native?
- How do I ignore this specific warning?
3. And how do I ignore this specific warning?
All that React-Native documentation says about ignoring specific warnings is:
"YellowBoxes can be disabled during development by using console.disableYellowBox = true;. Specific warnings can be ignored programmatically by setting an array of prefixes that should be ignored: console.ignoredYellowBox = ['Warning: ...'];."
So React-Native offers this piece of code, but I don't know how to specify the name of the warning:
console.ignoredYellowBox = ['Warning: ReactNative.createElement'];
