Replace preference getter functions with properties (#3091)

This commit is contained in:
AntsyLich
2026-03-20 14:57:01 +06:00
committed by GitHub
parent 2f9edb551f
commit 87665736a9
126 changed files with 816 additions and 722 deletions
@@ -65,7 +65,7 @@ abstract class BaseUpdatesGridGlanceWidget(
abstract val bottomPadding: Dp
override suspend fun provideGlance(context: Context, id: GlanceId) {
val locked = preferences.useAuthenticator().get()
val locked = preferences.useAuthenticator.get()
val containerModifier = GlanceModifier
.fillMaxSize()
.background(background)
@@ -22,7 +22,7 @@ class WidgetManager(
fun Context.init(scope: LifecycleCoroutineScope) {
combine(
getUpdates.subscribe(read = false, after = BaseUpdatesGridGlanceWidget.DateLimit.toEpochMilli()),
securityPreferences.useAuthenticator().changes(),
securityPreferences.useAuthenticator.changes(),
transform = { a, b -> a to b },
)
.distinctUntilChanged { old, new ->