Commit 028f112d by zhangchengbo

fix:去除黑名单展示通讯录备注名称,都以手机号展示

parent 2f46da5d
......@@ -322,18 +322,18 @@ private fun BlockedNumber(
onCopy: (BlockedNumber) -> Unit,
isSelected: Boolean
) {
val hasContactName = blockedNumber.contactName != null
val hasContactName = /*blockedNumber.contactName != null*/ false
val contactNameContent = remember {
movableContentOf {
Text(
text = blockedNumber.contactName.toString(),
text = /*blockedNumber.contactName.toString()*/ "",
modifier = modifier.padding(horizontal = SimpleTheme.dimens.padding.medium, vertical = SimpleTheme.dimens.padding.extraSmall)
)
}
}
val blockedNumberContent = remember {
movableContentOf {
BlockedNumberHeadlineContent(blockedNumber = blockedNumber, hasContactName = hasContactName)
BlockedNumberHeadlineContent(blockedNumber = blockedNumber, hasContactName = hasContactName )
}
}
ListItem(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment