- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 SwiftUI 中的列表或 ForEach 循环中执行 NavigationLink。不幸的是,我得到了一个非常奇怪的行为(例如,当点击 Leo 时它会打开 Karl,Opening Max 也指向 Karl)。
我已经发现它与 NavigationLink 中的“isActive”属性有关。不幸的是,我需要它来实现这里的行为:/image/g0BFz.gif这也在这里问 SwiftUI - Nested NavigationView: Go back to root .
我还尝试使用选择和标签属性,但我无法实现“返回根目录”机制。
这是示例:
import SwiftUI
struct Model: Equatable, Hashable {
var userId: String
var firstName: String
var lastName: String
}
struct ContentView: View {
@State var navigationViewIsActive: Bool = false
var myModelArray: [Model] = [
Model(userId: "27e880a9-54c5-4da1-afff-05b4584b1d2f", firstName: "Leo", lastName: "Test"),
Model(userId: "1050412a-cb12-4160-b7e4-2702ab8430c3", firstName: "Max", lastName: "Test"),
Model(userId: "1050412a-cb12-4160-b7e4-2702ab8430c3", firstName: "Karl", lastName: "Test")]
var body: some View {
NavigationView {
List(myModelArray, id: \.self) { model in
NavigationLink(destination: secondView(firstName: model.firstName), isActive: $navigationViewIsActive){ Text(model.firstName) }
}
.listStyle(PlainListStyle())
}
}
}
struct secondView: View {
@State var firstName: String
var body: some View {
NavigationView {
Text(firstName)
.padding()
}
}
}
谢谢!
最佳答案
这是因为只使用了一种状态 navigationViewIsActive
因此,当您单击导航链接时,该值将更改为 True
,所有链接都是 active
这种情况的解决方案是这样的:
State
它将保存选定的模型值 NavigationLink
,并制作 Hidden
(把它放在 VStack
中)List
使用 Button
而不是 NavigationLink
Button
点击:先改selectedModel
value ,而不是使导航链接处于事件状态(true)Tested with IOS 14
):
import SwiftUI
struct Model: Equatable, Hashable {
var userId: String
var firstName: String
var lastName: String
}
struct ContentView: View {
@State var navigationViewIsActive: Bool = false
@State var selectedModel : Model? = nil
var myModelArray: [Model] = [
Model(userId: "27e880a9-54c5-4da1-afff-05b4584b1d2f", firstName: "Leo", lastName: "Test"),
Model(userId: "1050412a-cb12-4160-b7e4-2702ab8430c3", firstName: "Max", lastName: "Test"),
Model(userId: "1050412a-cb12-4160-b7e4-2702ab8430c3", firstName: "Karl", lastName: "Test")]
var body: some View {
NavigationView {
VStack {
VStack {
if selectedModel != nil {
NavigationLink(destination: SecondView(firstName: selectedModel!.firstName), isActive: $navigationViewIsActive){ EmptyView() }
}
}.hidden()
List(myModelArray, id: \.self) { model in
Button(action: {
self.selectedModel = model
self.navigationViewIsActive = true
}, label: {
Text(model.firstName)
})
}
.listStyle(PlainListStyle())
}
}
}
}
struct SecondView: View {
@State var firstName: String
var body: some View {
NavigationView {
Text(firstName)
.padding()
}
}
}
struct Test_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
PS:我是这样写的:
How to navigate with SwiftUI ,它将帮助您了解在 swiftUI 中的导航方式
关于list - SwiftUI - List/ForEach 与 NavigationLink 和 isActive 结合使用无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65398123/
我有一个用户表,由活跃用户的 boolean 值组成,如下表所示 id | name | active 1 | john | false 2 | bob | true 3 | jeff | t
我想我明白为什么作为参数传递给箭头函数的第一个 isActive 实例被封装在大括号中,即 { isActive },而第二个isActive 没有封装在大括号中,但我想确保我理解正确。 封装在大括号
这个问题已经有答案了: What is the difference between public, protected, package-private and private in Java? (
与Should I delete or disable a row in a relational database?略有相关 考虑到我将采用在历史表中对我的表进行仓储更改的策略,我面临以下用于在 M
在新版本的iOS和Xcode中 NavigationLink(isActive: , destination: , label: ) 已弃用。 那我们如何控制NavigationLink的状态呢? 最
我正在编写一个小型 UWP 项目,也使用 MVVM 模式(MVVM Light 框架)进行学习,并且在许多场景和控件中遇到了绑定(bind)问题。 我已经努力将其中一个隔离到可用的迷你示例项目中 he
我发现XCode Organizer崩溃报告有很多崩溃。 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVAL
我目前正在考虑QTimer 实现的线程安全问题。 在我的应用程序中,我使用 bool isActive() 方法来检查计时器是否正在运行。由于我计划在其他线程中也使用此方法,因此我的想法转向了线程安全
我有路线 例如,当我在页面/catalog/10 时,我会尝试检查该路由是否处于事件状态 this.context.router.isActive('/catalog/:category') 但我总
我已经开始学习 SwiftUI,但是在构建我的 NavigationView 时遇到了一些问题 - 我不确定这是否是一个错误,或者我是否误解了嵌套导航链接应该如何工作! 这是我当前的代码: impor
我有一个 Bootstrap 实现,其中导航栏是一个无序列表,每个项目都设置为在事件时突出显示。突出显示本身使用 CSS 设置样式,但使用 AngularJS 检查事件状态: B
我使用 es6、twitter bootstrap 和 react-router 1.0.0-rc3。我想创建一个导航栏并添加到 li 元素类 active。 我尝试使用 history 的 isAc
相关bootstrap.js代码: ... Dropdown.prototype = { constructor: Dropdown , toggle: function (e) {
在 wxGTK 下,事件窗口没有从 IsActive() 返回真值。 我的软件有一个主窗口和一组工具窗口,都是从wxFrame派生出来的。当主窗口移动时,它会捕获移动事件并在所有工具窗口中调用位置方法
我发现只要次要路由打开,router.isActive 就会返回 false。 router.isActive 适合检查“我在路线 (x) 上吗?”(例如:支付页面)——不管哈希状态、查询参数如何和次
我从 UIKit 转到 SwiftUI,我遇到了 NavigationLink 在呈现新 View 时没有动画的问题。 当以下属性为非零时,我已将 View 结构设置为包含 NavigationLin
我正在尝试使用 Router.isActive 检查路由 如果当前路径是/animals/edit (router.isActive('/animals/edit') 是真的。 但是如果当前路线是/a
我正在尝试使用 Kotlin 协程而不是传统的 Java 线程来执行后台操作: 我从中学到了link而且效果很好 val job = launch { for(file in files) {
我正在尝试以编程方式将当前 View 更改为其他 View ,但是 NavigationLink 的 isActive 属性不起作用,我想我忘记了什么。 struct MainView: View {
我有一个 scrollView,我要在其中添加一个 textView。我想将 TextView 置于 schollView 的中心。代码在 textView.centerXAnchor.constra
我是一名优秀的程序员,十分优秀!