I have 2 Streams that I need to combine to build a widget, but unlike other questions I have seen I need to nest my streams.
I have a stream that gets a collection
Try merging your streams with something like Observable.zip2(stream1,stream2,zipper) or Observable.combineLatest2(streamA, streamB, combiner).
Observable.zip2(stream1,stream2,zipper)
Observable.combineLatest2(streamA, streamB, combiner)
For more info, check this post