Andrew D. has worked in the corporate world since 2008. Andrew began their career as Co-Founder of Frontline Asset Strategies. In 2010, they Co-Founded CenterPoint Legal Solutions. From 2016 to 2018, they were the CEO of Soaren Management. Andrew then moved to ZenResolve, where they have been the CEO since 2018.
package com.example.myapplication.ui.home;
import androidx.lifecycle.LiveData;
import androidx.lifecycle.MutableLiveData;
import androidx.lifecycle.ViewModel;
public class HomeViewModel extends ViewModel {
private MutableLiveData<String> mText;
public HomeViewModel() {
mText = new MutableLiveData<>();
mText.setValue("This is home fragment");
}
public LiveData<String> getText() {
return mText;
}
}
Sign up to view 12 direct reports
Get started