ahe*_*eze 8 ios swift swiftui swiftui-list
我有一个List从我的people数组中获取数据并显示它们的名称。
我还过滤了列表,以便它只显示包含文本字段文本的名称,即searchText. 这是我的代码:
struct Person: Identifiable {
let id = UUID() /// required for the List
var name = ""
}
struct ContentView: View {
@State var searchText = ""
var people = [ /// the data source
Person(name: "Alex"),
Person(name: "Ally"),
Person(name: "Allie"),
Person(name: "Bob"),
Person(name: "Tim"),
Person(name: "Timothy")
]
var body: some View {
VStack {
TextField("Search here", text: $searchText) /// text field
.padding()
List {
ForEach(
people.filter { person in /// filter the people
searchText.isEmpty || person.name.localizedStandardContains(searchText)
}
) { person in
Text(person.name)
}
}
.animation(.default) /// add the animation
}
}
}
Run Code Online (Sandbox Code Playgroud)
没有.animation(.default),它不会为更改设置动画(如预期)。
随着 .animation(.default),它动画!
但是,当所有人的姓名都不包含searchText. 发生这种情况时,people.filter返回一个空数组,然后List吓坏了。例如,当我输入“q”时,会发生这种情况:
整个列表向右飞,当我删除“q”时从左侧放大。我怎样才能防止这种情况发生?我正在寻找与普通过滤动画类似的动画(向上滑动和消失,就像在第二个 gif 中一样),或者只是淡出它。
我刚刚在 iOS 13 上进行了测试,如果我删除了.animation(.default)它,它就可以完美运行!

但是,如果我.animation(.default)再次添加,我会得到与 iOS 14 相同的结果。
我的实际代码组的人,所以我就用sections我的List。
struct Group: Identifiable {
let id = UUID() /// required for the List
var groupName = ""
var people = [Person]()
}
struct Person: Identifiable {
let id = UUID() /// required for the List
var name = ""
}
struct ContentView: View {
@State var searchText = ""
/// groups of people
var groups = [
Group(groupName: "A People", people: [
Person(name: "Alex"),
Person(name: "Ally"),
Person(name: "Allie")
]),
Group(groupName: "B People", people: [
Person(name: "Bob")
]),
Group(groupName: "T People", people: [
Person(name: "Tim"),
Person(name: "Timothy")
])
]
var body: some View {
VStack {
TextField("Search here", text: $searchText) /// text field
.padding()
List {
ForEach(
/// Filter the groups for people that match searchText
groups.filter { group in
searchText.isEmpty || group.people.contains(where: { person in
person.name.localizedStandardContains(searchText)
})
}
) { group in
Section(header: Text(group.groupName)) {
ForEach(
/// filter the people in each group
group.people.filter { person in
searchText.isEmpty || person.name.localizedStandardContains(searchText)
}
) { person in
Text(person.name)
}
}
}
}
.animation(.default) /// add the animation
}
}
}
Run Code Online (Sandbox Code Playgroud)
如果我按照@mahan 的建议将ForEach内部包裹起来List,就会发生这种情况:

在List没有怪异的缩放动画动画完美,但节头失去自己的风格,看起来像普通行。但我认为我们正在接近!
将ForEach包装在一个Section中,问题将得到解决。
List {
Section {
ForEach(
people.filter { person in /// filter the people
searchText.isEmpty || person.name.localizedStandardContains(searchText)
}
) { person in
Text(person.name)
}
}
}
.animation(.default) /// add the animation
Run Code Online (Sandbox Code Playgroud)
您可以根据需要添加任意数量的部分。
struct Person: Identifiable {
let id = UUID() /// required for the List
var name = ""
}
struct ContentView: View {
@State var searchText = ""
var people = [ /// the data source
Person(name: "Alex"),
Person(name: "Ally"),
Person(name: "Allie"),
Person(name: "Bob"),
Person(name: "Tim"),
Person(name: "Timothy")
]
var people2 = [ /// the data source
Person(name: "John"),
Person(name: "George"),
Person(name: "Jack"),
Person(name: "Mike"),
Person(name: "Barak"),
Person(name: "Steve")
]
var body: some View {
VStack {
TextField("Search here", text: $searchText) /// text field
.padding()
List {
Section {
ForEach(
people.filter { person in /// filter the people
searchText.isEmpty || person.name.localizedStandardContains(searchText)
}
) { person in
Text(person.name)
}
}
Section {
ForEach(people2.filter { person in /// filter the people
searchText.isEmpty || person.name.localizedStandardContains(searchText)
}) { person in
Text(person.name)
}
}
}
.animation(.default) /// add the animation
}
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
496 次 |
| 最近记录: |