File tree Expand file tree Collapse file tree 2 files changed +6
-12
lines changed
app/src/main/java/dev/dimension/flare Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ data class AppearanceSettings(
2525 val colorSeed : ULong = Color .Blue .value,
2626 val avatarShape : AvatarShape = AvatarShape .CIRCLE ,
2727 val showActions : Boolean = true ,
28- val pureColorMode : Boolean = true ,
28+ val pureColorMode : Boolean = false ,
2929 val showNumbers : Boolean = true ,
3030 val showLinkPreview : Boolean = true ,
3131 val showMedia : Boolean = true ,
Original file line number Diff line number Diff line change @@ -4,9 +4,7 @@ import androidx.compose.animation.AnimatedVisibility
44import androidx.compose.animation.ExperimentalSharedTransitionApi
55import androidx.compose.animation.slideInVertically
66import androidx.compose.animation.slideOutVertically
7- import androidx.compose.foundation.clickable
87import androidx.compose.foundation.layout.Arrangement
9- import androidx.compose.foundation.layout.Box
108import androidx.compose.foundation.layout.Column
119import androidx.compose.foundation.layout.PaddingValues
1210import androidx.compose.foundation.layout.Row
@@ -199,18 +197,14 @@ internal fun HomeTimelineScreen(
199197 navigationIcon = {
200198 if (LocalBottomBarShowing .current) {
201199 state.user.onSuccess {
202- Box (
203- modifier =
204- Modifier
205- .padding(start = 16 .dp)
206- .clip(CircleShape )
207- .clickable {
208- toQuickMenu()
209- },
200+ IconButton (
201+ onClick = {
202+ toQuickMenu.invoke()
203+ },
210204 ) {
211205 AvatarComponent (
212206 it.avatar,
213- size = 36 .dp,
207+ size = 24 .dp,
214208 )
215209 }
216210 }
You can’t perform that action at this time.
0 commit comments