Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.navigationBarsPadding
import androidx.compose.foundation.layout.offset
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.requiredSize
import androidx.compose.material3.Icon
Expand Down Expand Up @@ -75,7 +76,12 @@ internal fun TipCardScreen() {
painter = painterResource(R.drawable.ic_remote_send),
contentDescription = null,
tint = Color.White,
modifier = Modifier.requiredSize(size),
// The send glyph is bottom-heavy (wide tray below a thin arrow),
// so geometric centering leaves it sitting visually low in the
// circle. Nudge it up slightly to optically center it.
modifier = Modifier
.requiredSize(size)
.offset(y = (-1.5).dp),
)
}
Text(
Expand Down
Loading