在 SwiftUI 中滚动时导航栏闪烁

时间:2021-04-23 06:18:25

标签: ios swift animation swiftui

当overscroll up 时,内联导航和大导航之间的过渡不平滑并且有短暂的闪烁

enter image description here

struct ContentView: View {

    var body: some View {

      NavigationView {
            ScrollView {
                Text("Content")
                    .frame(width: 100, height: 300)
            }.navigationBarTitle(Text("Title"), displayMode: .large)
        }
    }
}

0 个答案:

没有答案