Updated on 2026-08-14

This commit is contained in:
Tangem 2026-02-27 13:17:08 +05:00
parent e047c491cf
commit 7d13821e3c
36 changed files with 541 additions and 59 deletions

View file

@ -138,7 +138,7 @@ fun LazyListScope.notifications(
* @param containerColor Color to be used for the background of the notifications.
* @param modifier Optional Modifier for the notifications.
*/
fun LazyListScope.stackedNotifications(
fun LazyListScope.notificationsCarousel(
notifications: ImmutableList<TangemMessageUM>?,
containerColor: Color,
modifier: Modifier = Modifier,
@ -192,7 +192,7 @@ private fun StackedNotifications_Preview(
.background(contentColor)
.padding(16.dp),
) {
stackedNotifications(
notificationsCarousel(
notifications = params,
containerColor = contentColor,
)