-
Notifications
You must be signed in to change notification settings - Fork 972
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Representative sample of some sort. #92
Comments
A good example for edittext is username inputs when creating/editing an account. Take the text changes and pipe them right into a nice rx chain to validate and check availability. Loose mobile psuedocode below
We do it in our app, and it's always one of my go-to examples whenever I show someone how we use rxjava. A similar example could be auto complete filling where the text is first sent to the server and items are returned. |
Not sure this is still useful because it doesn't have a strong scope. Maybe we just list a few open source apps which are using this library? I also really don't like that approach since people will make PRs wanting to add every and any app which might not actually be using this library well. |
I think linking some examples would be a good middle ground. |
Yep. I don't know any other than @f2prateek's Bee. Anyone know more? On Thu, Feb 18, 2016 at 10:27 PM Zac Sweers notifications@github.com
|
I could put together an example of the classic debounced search query in a gist. I've done it enough times in apps that I should probably just pull it out. Are you looking for full app examples or also gists and articles? The only concern with external examples though is that they can/will eventually get out of date. |
It would be great to have basic sample on how to integrate RxBindings with common architectures (MVP, MVVM) or how to use with the new arch components |
That sample would be the same as if you use normal listeners or
Observable.create yourself to wrap callbacks though. Seems vastly out of
scope.
…On Mon, Jul 24, 2017 at 11:33 PM Fernando Raviola ***@***.***> wrote:
It would be great to have basic sample on how to integrate RxBindings with
common architectures (MVP, MVVM) or how to use with the new arch components
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#92 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAEEEaEOs1SR1VINyrzXQq1Ex-TcqJECks5sRRvEgaJpZM4FoY5J>
.
|
I'm fairly lost as to how to even start thinking about this. Need a couple of examples to crack open the wall of ignorance. (I'm familiar with RxJava but not in this context.) |
This, or some handful of our operators, should be combined in a representative sample to showcase the ease of binding and composition afforded by these APIs to solve complex interaction problems.
The text was updated successfully, but these errors were encountered: