I have implemented a Live Activity with Dynamic Island support for my charging app. Currently, the Dynamic Island expands when tapped, but I want to disable this interaction completely. Here's my current implementation:
**dynamicIsland: { context in
DynamicIsland {
// Expanded Regions
DynamicIslandExpandedRegion(.leading) {
// Leading expanded content
}
DynamicIslandExpandedRegion(.trailing) {
// Trailing expanded content
}
DynamicIslandExpandedRegion(.bottom) {
// Bottom expanded content
}
} compactLeading: {
// Compact leading view content
} compactTrailing: {
// Compact trailing view content
} minimal: {
// Minimal view content
}
.keylineTint(Color.clear)
}**