_ivanC
_ivanC
## Review 1 ``` UIColor *backgroundColor = _backgroundColor; if (@available(iOS 13.0, *)) { UITraitCollection *tempTraitCollection = [UITraitCollection traitCollectionWithUserInterfaceStyle:_primitiveTraitCollection.userInterfaceStyle]; backgroundColor = [backgroundColor resolvedColorWithTraitCollection:tempTraitCollection]; ``` >Might be a stupid question, but why...
I debug these more, and found the reason ## view-based node **If view is NOT loaded** ``` ASPendingState.mm - (void)applyToView:(UIView *)view withSpecialPropertiesHandling:(BOOL)specialPropertiesHandling { if (flags.setBackgroundColor) { view.backgroundColor = backgroundColor; layer.backgroundColor...
Just mark I have tried to sync TraitCollection in `addSubnode` , `ASTraitCollectionPropagateDown ` to all child nodes. just like `ASTraitCollectionPropagateDown` is called in `_setSupernode`. And its NOT working because: *...
Added test case to compare backgroundColor display when `overrideUserInterfaceStyle` is set, which fail in **master** & succeed in this **branch** I am not sure setting layer's backgroundColor is somehow useful...
@CodeEagle yes I know, I mean we should support this.
@CodeEagle It's not about which media format. var kAudioFileStreamError_NotOptimized: OSStatus It is not possible to produce output packets because the streamed audio file's packet table or other defining information is...
``` void Audio_Stream::audioQueueStateChanged(Audio_Queue::State state) ``` this callback always notify **PLAYING** state for now, so I think the timer might be duplicated. If there is a problem, @muhku how to fix...