File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
app/src/main/java/protect/card_locker/compose Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ import androidx.compose.runtime.remember
1717import androidx.compose.ui.Alignment
1818import androidx.compose.ui.Modifier
1919import androidx.compose.ui.res.stringResource
20+ import androidx.compose.ui.semantics.hideFromAccessibility
21+ import androidx.compose.ui.semantics.semantics
2022import androidx.compose.ui.text.AnnotatedString
2123import androidx.compose.ui.unit.dp
2224import protect.card_locker.OpenWebLinkHandler
@@ -44,6 +46,7 @@ fun CatimaAboutSection(
4446 OpenWebLinkHandler ().openBrowser(activity, onClickUrl)
4547 }
4648 }
49+ .semantics(mergeDescendants = true ) {}
4750 ) {
4851 Column (modifier = Modifier .weight(1F )) {
4952 Text (
@@ -52,7 +55,7 @@ fun CatimaAboutSection(
5255 )
5356 Text (text = message)
5457 }
55- Text (modifier = Modifier .align(Alignment .CenterVertically ),
58+ Text (modifier = Modifier .align(Alignment .CenterVertically ).semantics() { hideFromAccessibility() } ,
5659 text = " >" ,
5760 style = MaterialTheme .typography.bodyMedium
5861 )
You can’t perform that action at this time.
0 commit comments