Xcode Swift导航链接点击框问题

wko9yo5t  于 2022-11-18  发布在  Swift
关注(0)|答案(1)|浏览(148)

//NavigationLink的点击框即使使用了填充或偏移量后也保持不变。怎么会有人将它与其图像沿着移动
//
导航视图{导航链接{下一页()

}
                label: {
                    Image(systemName: "globe")
                            .offset(y:200)
                            .ignoresSafeArea()
                        .imageScale(.large)
                        .foregroundColor(.accentColor)
                        .border(Color.red)
                    }
3xiyfsfu

3xiyfsfu1#

给予它一个背景。比如

Image(systemName: "globe")
                            .offset(y:200)
                            .ignoresSafeArea()
                        .imageScale(.large)
                        .foregroundColor(.accentColor)
                        .border(Color.red)
                        .background(Color(UIColor.systemBackground))

应该足够了。

相关问题