Skip to content
Open
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
@@ -1,5 +1,6 @@
package app.grapheneos.info.ui.reusablecomposables

import androidx.compose.foundation.clickable
import androidx.compose.foundation.gestures.detectTapGestures
import androidx.compose.foundation.text.InlineTextContent
import androidx.compose.material3.LocalContentColor
Expand Down Expand Up @@ -61,7 +62,9 @@ fun ClickableText(

Text(
text = text,
modifier = modifier.then(pressIndicator),
modifier = modifier
.clickable(onClick = { })
.then(pressIndicator),
style = style.merge(
color = textColor,
fontSize = fontSize,
Expand Down