[ios] fix live activity background color

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2024-12-24 13:10:13 +04:00 committed by Kiryl Kaveryn
parent f79b21892a
commit 438e923de5

View file

@ -24,7 +24,9 @@ struct TrackRecordingLiveActivityView: View {
}
.padding([.leading, .trailing, .bottom], 16)
}
.background(.primary.opacity(0.15))
.activityBackgroundTint(.black.opacity(0.2))
// Uncomment the line below to simulate the background color in Preview because the `activityBackgroundTint` can only displayed on the device or simulator.
//.background(.black.opacity(0.85))
}
}