File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
app/src/main/java/org/thoughtcrime/securesms/components/settings/app Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,9 @@ import androidx.compose.ui.res.colorResource
3535import androidx.compose.ui.res.painterResource
3636import androidx.compose.ui.res.stringResource
3737import androidx.compose.ui.res.vectorResource
38+ import androidx.compose.ui.text.TextStyle
3839import androidx.compose.ui.text.style.TextAlign
40+ import androidx.compose.ui.text.style.TextDirection
3941import androidx.compose.ui.unit.dp
4042import androidx.fragment.app.viewModels
4143import androidx.lifecycle.Lifecycle
@@ -634,7 +636,10 @@ private fun BioRow(
634636
635637 Text (
636638 text = prettyPhoneNumber,
637- color = MaterialTheme .colorScheme.onSurfaceVariant
639+ color = MaterialTheme .colorScheme.onSurfaceVariant,
640+ style = TextStyle (
641+ textDirection = TextDirection .ContentOrLtr
642+ )
638643 )
639644
640645 if (hasUsername) {
You can’t perform that action at this time.
0 commit comments