Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
xuning
/
livekitAndroidXuningTest
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David Liu
2021-11-29 16:11:19 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
587110426eed8c597747250147f17b44f60118dc
58711042
1 parent
a680c131
properly check for muted in compose sample
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
1 行增加
和
1 行删除
sample-app-compose/src/main/java/io/livekit/android/composesample/ParticipantItem.kt
sample-app-compose/src/main/java/io/livekit/android/composesample/ParticipantItem.kt
查看文件 @
5871104
@@ -98,7 +98,7 @@ fun ParticipantItem(
@@ -98,7 +98,7 @@ fun ParticipantItem(
98
},
98
},
99
)
99
)
100
100
101
-
val isMuted = audioTracks.
isEmpty()
101
+
val isMuted = audioTracks.
values.none { it.track != null && !it.muted }
102
102
103
if (isMuted) {
103
if (isMuted) {
104
Icon(
104
Icon(
请
注册
或
登录
后发表评论