Sergio Serra

Results 3 issues of Sergio Serra

I was looking at `HiltTestActivity` comparing to `EmptyTestActivity` it is missing `setTheme()` during `onCreate()` method. ```kotlin override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setTheme( intent.getIntExtra( "androidx.fragment.app.testing.FragmentScenario.EmptyFragmentActivity.THEME_EXTRAS_BUNDLE_KEY", R.style.FragmentScenarioEmptyFragmentActivityTheme ) ) } ```...

Hi I'm using the twoway view for the first and i'm struggling to specify the layout attributes for the views. I have tow kinds of views, header and the episode....

HI is it safe to observe a LiveData instance stored in ViewModel directly from a View ? This what i'm doing, it's working, but i don't know if i'am missing...