optimize the appicon of iOS

This commit is contained in:
2026-08-26 17:14:59 +08:00
parent 76b0332035
commit bb677ea8cf
11 changed files with 406 additions and 11 deletions

View File

@@ -5,6 +5,7 @@ struct PlayerSectionView: View {
@ObservedObject var controller: PlayerController
var showsContinuousToggle: Bool
@Binding var continuousPlayback: Bool
var showsSubtitle: Binding<Bool>? = .constant(true)
var onFullscreen: () -> Void
@State private var progressDragging = false
@@ -13,7 +14,9 @@ struct PlayerSectionView: View {
var body: some View {
VStack(spacing: 0) {
playerSurface
sentencePanel
if showsSubtitle?.wrappedValue == true {
sentencePanel
}
}
.padding(.horizontal, 16)
}