// Sources/UI/Settings/LockView.swift // T-2.11: Full-screen lock overlay shown when isLocked == true. import SwiftUI struct LockView: View { var body: some View { ZStack { Rectangle().fill(.ultraThinMaterial).ignoresSafeArea() VStack(spacing: 16) { Image(systemName: "lock.fill").font(.system(size: 48)) Text("Locked").font(.title2) } } } }