Skip to content

Instantly share code, notes, and snippets.

@pawelsa
Last active July 6, 2022 19:18
Show Gist options
  • Save pawelsa/ac9371da6562041b0977b89e73967269 to your computer and use it in GitHub Desktop.
Save pawelsa/ac9371da6562041b0977b89e73967269 to your computer and use it in GitHub Desktop.
extension LoadingStatusStreamExtension<T> on Stream<T> {
DataStream<T> withLoading(LoadingStatus loadingStatus) {
return combineLatest<bool, StreamData<T>>(loadingStatus.listen(),
(data, isLoading) {
if (isLoading) {
return LoadingData(data);
}
return ReadyData(data);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment