Skip to content

Instantly share code, notes, and snippets.

View boy12hoody's full-sized avatar
🎯
Focusing

Boy Hoody boy12hoody

🎯
Focusing
  • Uzbekistan, Tashkent
View GitHub Profile
1. hiltvm (applicable in top-level)
@dagger.hilt.android.lifecycle.HiltViewModel
class $NAME$ @javax.inject.Inject constructor(
$PARAM$
) : androidx.lifecycle.ViewModel() {
$END$
}
2. vmstatefunc (applicable in class)
private val _$NAME$ = androidx.compose.runtime.mutableStateOf<$TYPE$>($INITIAL_VALUE$)