在中,有没有办法改变DayPicker弹出窗口的位置?我在视图的最右边有一个DayPickerInput,然后DayPicker会打开并与输入左对齐,但这会使DayPicker在窗口边缘被裁剪。
有没有办法让DayPicker与输入右对齐,并让它向左溢出,这样它就不会被我的窗口边缘截断?
Right now it looks like this
(the dots are the input)
....._____
| |
| |
| |
|_________|
and I want it to
我正在开发我的第一个SwiftUI应用程序,它想要显示一个类别的List,并用一个徽章来指示该类别中的项目数量。类别的标题将在左侧,徽章将在行上右对齐。该列表将由NavigationLink组成,因此点击其中一个将进一步深入到视图层次结构中。我编写的呈现NavigationLink的代码如下所示: List {
ForEach(myItems.indices) { categoryIndex in
let category = categories[categoryIndex]
let t