We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
📝 DESCRIPTION
☑ TODO
_existingCategoryList
fun getExistingCategoryList() { viewModelScope.launch { kotlin.runCatching { RetrofitObject.provideHavitApi(token).getAllCategories().data ?: emptyList() }.onSuccess { categoryList -> val tmp: MutableList<String> = mutableListOf() for (element in categoryList) tmp.add(element.title) _existingCategoryList.value = tmp _enterCategoryNameViewState.value = NetworkStatus.Success() }.onFailure { _enterCategoryNameViewState.value = NetworkStatus.Error(throwable = it) } } }
The text was updated successfully, but these errors were encountered:
KxxHyoRim
No branches or pull requests
📝 DESCRIPTION
☑ TODO
_existingCategoryList
이 null로 초기화 되는것으로 예상The text was updated successfully, but these errors were encountered: