mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-08-20 14:25:51 +00:00
fix: correct touch area offset in Profile Switcher Tab
- Applied `Modifier.fillMaxSize()` to `CollectionCardRemoteImage` inside `PopupProfileBubble` and `ActiveProfileMiniAvatar`. - Removed redundant clipping layers that displaced the touch area for Native iOS views within the bottom navigation and popup switcher.
This commit is contained in:
parent
6f5c865a55
commit
2eaab2f545
1 changed files with 2 additions and 2 deletions
|
|
@ -508,7 +508,7 @@ private fun PopupProfileBubble(
|
|||
CollectionCardRemoteImage(
|
||||
imageUrl = avatarImageUrl,
|
||||
contentDescription = profile.name,
|
||||
modifier = Modifier.size(48.dp).clip(CircleShape),
|
||||
modifier = Modifier.fillMaxSize(),
|
||||
contentScale = ContentScale.Crop,
|
||||
animateIfPossible = true,
|
||||
)
|
||||
|
|
@ -823,7 +823,7 @@ fun ActiveProfileMiniAvatar(
|
|||
CollectionCardRemoteImage(
|
||||
imageUrl = avatarImageUrl,
|
||||
contentDescription = profile.name,
|
||||
modifier = Modifier.size(size.dp).clip(CircleShape),
|
||||
modifier = Modifier.fillMaxSize(),
|
||||
contentScale = ContentScale.Crop,
|
||||
animateIfPossible = true,
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue