Skip to content

Commit

Permalink
adding version of deprecation cycle
Browse files Browse the repository at this point in the history
  • Loading branch information
DevSrSouza committed Mar 23, 2024
1 parent 4007279 commit 6147387
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public inline fun <reified T : ScreenModel> Navigator.koinNavigatorScreenModel(
}

@Deprecated(
message = "use koinScreenModel() instead",
message = "use koinScreenModel() instead. Will be removed on 1.1.0",
replaceWith = ReplaceWith("koinScreenModel")
)
@Composable
Expand All @@ -50,7 +50,7 @@ public inline fun <reified T : ScreenModel> Screen.getScreenModel(
): T = koinScreenModel<T>(qualifier = qualifier, parameters = parameters)

@Deprecated(
message = "use koinNavigatorScreenModel() instead",
message = "use koinNavigatorScreenModel() instead. Will be removed on 1.1.0",
replaceWith = ReplaceWith("koinNavigatorScreenModel")
)
@Composable
Expand Down

0 comments on commit 6147387

Please sign in to comment.