Skip to content
#

mvvm-sample

Here are 70 public repositories matching this topic...

dmitrybublik
dmitrybublik commented Dec 14, 2016

TestStack.White.UIItems.ListViewRow cannot be selected normally. The method Select() doesn't work. For selection emultaion we use trick:

listViewRow.Focus();
listViewRow.Cells[0].Click();

But this trick works unstable. It is better add big delay between Focus() and Click():

listViewRow.Focus();
Task.Delay(1000).Wait();
listViewRow.Cells[0].Click();

This is simple weather application example to get temperature of the searched city and get the result from an api call from metaweather API's.the app is build using retrofit2+room+mvvv+coroutines+liveData+viewmodel

  • Updated Apr 1, 2020
  • Kotlin

Improve this page

Add a description, image, and links to the mvvm-sample topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the mvvm-sample topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.