【发布时间】:2020-07-30 02:20:00
【问题描述】:
我有代码:
NavigationLink(destination: ContentView(), label: {
Text("Main Menu")
.font(Font.custom("ComicNeue-Bold", size: 20))
.foregroundColor(.white)
.padding()
})
每当我按下它时,ContentView() 就会从右侧滑入。就算我加了
.transition(.move(edge: .leading))
到 NavigationLink 它仍然从右侧滑入。可以从左边打开吗?还是其他方向?
【问题讨论】:
标签: swift animation swiftui swift5