Extract the disabled composer view into its own struct

This commit is contained in:
Stefan Ceriu
2025-06-06 13:03:54 +03:00
committed by Stefan Ceriu
parent 805db73e56
commit f047e51ab8
4 changed files with 25 additions and 10 deletions

View File

@@ -0,0 +1,19 @@
//
// Copyright 2025 New Vector Ltd.
//
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
// Please see LICENSE files in the repository root for full details.
//
import Compound
import SwiftUI
struct ComposerDisabledView: View {
var body: some View {
Text(L10n.screenRoomTimelineNoPermissionToPost)
.font(.compound.bodyLG)
.foregroundStyle(.compound.textDisabled)
.multilineTextAlignment(.center)
.padding(.vertical, 10) // Matches the MessageComposerStyleModifier
}
}