contrasting circle around profile picture

remove unused import
This commit is contained in:
David Kaspar
2025-04-13 09:59:43 +02:00
parent fd1c5d5887
commit cbd5a8a7ee
2 changed files with 2 additions and 5 deletions
@@ -20,8 +20,6 @@
*/ */
package com.vitorpamplona.amethyst.ui.navigation package com.vitorpamplona.amethyst.ui.navigation
import android.R.attr.maxLines
import android.R.attr.onClick
import androidx.compose.foundation.Image import androidx.compose.foundation.Image
import androidx.compose.foundation.border import androidx.compose.foundation.border
import androidx.compose.foundation.clickable import androidx.compose.foundation.clickable
@@ -235,7 +233,7 @@ fun ProfileContentTemplate(
.width(100.dp) .width(100.dp)
.height(100.dp) .height(100.dp)
.clip(shape = CircleShape) .clip(shape = CircleShape)
.border(3.dp, MaterialTheme.colorScheme.background, CircleShape) .border(3.dp, MaterialTheme.colorScheme.onBackground, CircleShape)
.clickable(onClick = onClick), .clickable(onClick = onClick),
loadProfilePicture = accountViewModel.settings.showProfilePictures.value, loadProfilePicture = accountViewModel.settings.showProfilePictures.value,
loadRobohash = accountViewModel.settings.featureSet != FeatureSetType.PERFORMANCE, loadRobohash = accountViewModel.settings.featureSet != FeatureSetType.PERFORMANCE,
@@ -425,7 +423,7 @@ fun WatchFollower(
.observeAsState() .observeAsState()
LaunchedEffect(key1 = accountUserFollowersState) { LaunchedEffect(key1 = accountUserFollowersState) {
onReady(baseAccountUser.followerCount().toString() ?: "--") onReady(baseAccountUser.followerCount().toString())
} }
} }
@@ -23,7 +23,6 @@ package com.vitorpamplona.amethyst.ui.theme
import android.app.Activity import android.app.Activity
import android.app.UiModeManager import android.app.UiModeManager
import android.content.Context import android.content.Context
import android.graphics.Color.red
import androidx.compose.foundation.background import androidx.compose.foundation.background
import androidx.compose.foundation.border import androidx.compose.foundation.border
import androidx.compose.foundation.isSystemInDarkTheme import androidx.compose.foundation.isSystemInDarkTheme