RolandPheasant / DynamicData.Snippets

'101 samples' of dynamic data and rx in action
139 stars 13 forks source link

Detail implementation #6

Open Depechie opened 4 years ago

Depechie commented 4 years ago

Any more details on how we can get a hold of the mainthread in a Xamarin app? https://github.com/RolandPheasant/DynamicData.Snippets/blob/master/DynamicData.Snippets/Group/XamarinFormsGrouping.cs#L31

Not been able to create a provider.

RolandPheasant commented 4 years ago

The provider is used as an example for how to set up observables so they can be tested and is not a definitive means of solving this problem.

To get the main thread ReactiveUI provide an out of the box solution for accessing the main thread. I suggest you check it out.

Depechie commented 4 years ago

Yeah I know, problem is I'm not using Reactive UI ;) but will check their code. Thx.