chore: inject VM with Lifecycle-ViewModel-Compose integration
This commit is contained in:
parent
11f192532f
commit
a981b6b9f7
2 changed files with 3 additions and 1 deletions
|
@ -72,6 +72,7 @@ dependencies {
|
|||
implementation(libs.androidx.documentfile)
|
||||
implementation(libs.androidx.fragment.ktx)
|
||||
implementation(libs.bundles.androidxLifecycle)
|
||||
implementation(libs.androidx.lifecycle.viewmodel.compose)
|
||||
implementation(libs.androidx.material)
|
||||
implementation(libs.androidx.preference)
|
||||
implementation(libs.androidx.recyclerview)
|
||||
|
|
|
@ -17,6 +17,7 @@ import androidx.compose.ui.Modifier
|
|||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.lifecycle.viewmodel.compose.viewModel
|
||||
import app.passwordstore.R
|
||||
import app.passwordstore.ui.APSAppBar
|
||||
import app.passwordstore.ui.compose.theme.APSTheme
|
||||
|
@ -70,8 +71,8 @@ class PGPKeyListActivity : ComponentActivity() {
|
|||
|
||||
@Composable
|
||||
fun PGPKeyList(
|
||||
viewModel: PGPKeyListViewModel,
|
||||
modifier: Modifier = Modifier,
|
||||
viewModel: PGPKeyListViewModel = viewModel(),
|
||||
) {
|
||||
KeyList(
|
||||
identifiers = viewModel.keys,
|
||||
|
|
Loading…
Reference in a new issue