| 1158 | } |
| 1159 | |
| 1160 | struct NotchCompactTrailingView: View { |
| 1161 | let audioPublisher: AnyPublisher<CGFloat, Never> |
| 1162 | @ObservedObject private var contentState = NotchContentState.shared |
| 1163 | |
| 1164 | var body: some View { |
| 1165 | CompactNotchWaveformView( |
| 1166 | audioPublisher: self.audioPublisher, |
| 1167 | color: self.contentState.mode.notchColor |
| 1168 | ) |
| 1169 | .frame(width: 34, height: 16) |
| 1170 | } |
| 1171 | } |
| 1172 | |
| 1173 | struct NotchCompactBottomView: View { |
| 1174 | @ObservedObject private var contentState = NotchContentState.shared |
no test coverage detected