NTP-9272 | Shivam | Bug Fix | IAN | Background Color is Incorrect (#13387)

This commit is contained in:
Shivam Goyal
2024-10-28 12:44:24 +05:30
committed by GitHub
parent 68913593cc
commit d1b8ad44d3

View File

@@ -160,7 +160,12 @@ fun BoxScope.NotificationWidgetsRenderer(
)
}
)
Box(modifier = Modifier.fillMaxSize().pullRefresh(pullRefreshState)) {
Box(
modifier =
Modifier.fillMaxSize()
.background(color = Color.White)
.pullRefresh(pullRefreshState)
) {
LazyColumn(modifier = Modifier.fillMaxSize(), state = lazyListState) {
val partitionedNotificationData =
notificationVM.partitionNotificationData(notificationDataList)