“Yellowbox React Native” Kod odpowiedzi

Usuń żółte ostrzeżenie React Native Emulator

console.disableYellowBox = true;
//add it anywhere in any page to disable warnings in emulator
Jurie

Wyłącz żółtą skrzynkę Reacct Native

console.disableYellowBox = true;
Clear Cobra

Yellowbox React Native

// RN >= 0.63
import { LogBox } from 'react-native';

LogBox.ignoreLogs(['Warning: ...']);

// RN >= 0.52
import {YellowBox} from 'react-native';

YellowBox.ignoreWarnings(['Warning: ReactNative.createElement']);

// RN < 0.52
console.ignoredYellowBox = ['Warning: ReactNative.createElement'];
le table

Odpowiedzi podobne do “Yellowbox React Native”

Pytania podobne do “Yellowbox React Native”

Więcej pokrewnych odpowiedzi na “Yellowbox React Native” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu