Код: Выделить всё
struct DemoView: View {
@State var isPresented = true
var body: some View {
ZStack {
Color.brown
.ignoresSafeArea()
VStack {
Spacer()
Text("My bottom menu")
}
}
.sheet(isPresented: $isPresented) {
Text("my news page")
.presentationDetents([.height(100), .fraction(0.9)])
.interactiveDismissDisabled()
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/795 ... cific-view
Мобильная версия