https://github.com/dmkeks1/Schrittzaehler

ZStack {
 
            Color("dracula.purple")
 
                .ignoresSafeArea()
 
            ScrollView(.horizontal, showsIndicators: **false**) {
 
                HStack(spacing: 0) {
 
                    SettingsView()
 
                        .frame(width: UIScreen.main.bounds.width)
 
                    MainContentView()
 
                        .frame(width: UIScreen.main.bounds.width)
 
                    HistoryView()
 
                        .frame(width: UIScreen.main.bounds.width)
 
                }
 
            }
 
            .scrollTargetBehavior(.paging)
 
        }