var body: some View {
ScrollView {
LazyVStack {
ForEach(0..<15) { _ in
/*
Временная заглушка
Placeholder content
*/
Text("PLACEHOLDER")
.font(.largeTitle)
.bold()
.frame(maxWidth: .infinity)
.frame(height: 200)
.background(Color.appAccentColor)
}
}
}
.toolbar(.hidden, for: .tabBar)
.toolbar {
trailingUserAvatar()
toolbarUserInfo()
}
.toolbarTitleDisplayMode(.inline) // <--
.safeAreaInset(edge: .bottom) {
TextInputArea()
.background(Color(.systemBackground))
}
}