react-native-toast-native
react-native-toast-native copied to clipboard
RNToastNative has a warning [requiresMainQueueSetup]
I added the following code in the RNToastNative
+ (BOOL) requiresMainQueueSetup {
Return YES;
}
Warnings will disappear.
react-native 0.56.0
@shx1545 Where should I put this code in the folder "RNToastNative" my man ?
i also receive that warning
@Zacele To fix this problem, this code:
+ (BOOL) requiresMainQueueSetup {
return YES;
}
has to be added in RNToastNative.m inside the RNToastNative class implementation.