- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 SwiftUI 2.0,实际上,我很高兴 Apple 引入了 PageTabViewStyle 来简单地创建一个寻呼机。
但不幸的是,我无法以我想要的方式实现它。
是否可以创建一个显示前一个和下一个项目的一小部分的寻呼机(PageTabViewStyle)?
图 1:期望行为
我尝试使用新的 PageTabViewStyle 以及一些填充和/或偏移的组合,并且我还尝试与 UIKit(PageView/PageViewController/PAgeViewControl)进行交互。
但这里的行为相同,我只看到选定的项目,即使它没有覆盖整个宽度。
图2:当前行为
SwiftUI 2.0 - PageTabViewStyle 集成
以下代码片段是 PageTabViewStyle 的一个非常简单的实现,但是如果您有想法,可以在这个示例中向我展示我可以做些什么来使它工作:
import SwiftUI
struct ContentView: View {
let colors: [Color] = [.red, .green, .yellow, .blue]
var body: some View {
TabView {
ForEach(0..<6) { index in
HStack() {
Text("Tab \(index)")
.font(.title)
.frame(maxWidth: .infinity, maxHeight: .infinity)
.background(colors[index % colors.count])
.cornerRadius(8)
}
.frame(width: 300, height: 200)
}
}.tabViewStyle(PageTabViewStyle())
}
}
/*
See LICENSE folder for this sample’s licensing information.
Abstract:
A view that wraps a UIPageViewController.
*/
import SwiftUI
import UIKit
struct PageViewController: UIViewControllerRepresentable {
var controllers: [UIViewController]
@Binding var currentPage: Int
func makeCoordinator() -> Coordinator {
Coordinator(self)
}
func makeUIViewController(context: Context) -> UIPageViewController {
let pageViewController = UIPageViewController(
transitionStyle: .scroll,
navigationOrientation: .horizontal,
options: [UIPageViewController.OptionsKey.interPageSpacing: 5]
)
pageViewController.dataSource = context.coordinator
pageViewController.delegate = context.coordinator
return pageViewController
}
func updateUIViewController(_ pageViewController: UIPageViewController, context: Context) {
pageViewController.setViewControllers(
[controllers[currentPage]], direction: .forward, animated: true)
}
class Coordinator: NSObject, UIPageViewControllerDataSource, UIPageViewControllerDelegate {
var parent: PageViewController
init(_ pageViewController: PageViewController) {
self.parent = pageViewController
}
func pageViewController(
_ pageViewController: UIPageViewController,
viewControllerBefore viewController: UIViewController) -> UIViewController? {
guard let index = parent.controllers.firstIndex(of: viewController) else {
return nil
}
if index == 0 {
return parent.controllers.last
}
return parent.controllers[index - 1]
}
func pageViewController(
_ pageViewController: UIPageViewController,
viewControllerAfter viewController: UIViewController) -> UIViewController? {
guard let index = parent.controllers.firstIndex(of: viewController) else {
return nil
}
if index + 1 == parent.controllers.count {
return parent.controllers.first
}
return parent.controllers[index + 1]
}
func pageViewController(_ pageViewController: UIPageViewController, didFinishAnimating finished: Bool, previousViewControllers: [UIViewController], transitionCompleted completed: Bool) {
if completed,
let visibleViewController = pageViewController.viewControllers?.first,
let index = parent.controllers.firstIndex(of: visibleViewController) {
parent.currentPage = index
}
}
}
}
/*
See LICENSE folder for this sample’s licensing information.
Abstract:
A view for bridging a UIPageViewController.
*/
import SwiftUI
struct PageView<Page: View>: View {
var viewControllers: [UIHostingController<Page>]
@State var currentPage = 0
init(_ views: [Page]) {
self.viewControllers = views.map { UIHostingController(rootView: $0) }
}
var body: some View {
ZStack(alignment: .bottomTrailing) {
PageViewController(controllers: viewControllers, currentPage: $currentPage)
PageControl(numberOfPages: viewControllers.count, currentPage: $currentPage)
.padding(.trailing)
}
}
}
谢谢,
最佳答案
我没有找到任何开箱即用的东西,所以我在 SwiftUI 中这样实现它:
轮播:
import Foundation
import SwiftUI
struct Carousel<Content: View,T: Identifiable>: View {
var content: (T) -> Content
var list: [T]
var spacing: CGFloat
var trailingSpace: CGFloat
@Binding var index: Int
init(spacing: CGFloat = 15,trailingSpace: CGFloat = 200,index: Binding<Int>,items: [T],@ViewBuilder content: @escaping (T)->Content){
self.list = items
self.spacing = spacing
self.trailingSpace = trailingSpace
self._index = index
self.content = content
}
@GestureState var offset: CGFloat = 0
@State var currentIndex: Int = 0
var body: some View{
GeometryReader{proxy in
let width = proxy.size.width - (trailingSpace - spacing)
let adjustMentWidth = (trailingSpace / 2) - spacing
HStack(spacing: spacing){
ForEach(list){item in
content(item)
.frame(width: proxy.size.width - trailingSpace, height: 100)
}
}
.padding(.horizontal,spacing)
.offset(x: (CGFloat(currentIndex) * -width) + (currentIndex != 0 ? adjustMentWidth : 0) + offset)
.gesture(
DragGesture()
.updating($offset, body: { value, out, _ in
out = value.translation.width
})
.onEnded({ value in
let offsetX = value.translation.width
let progress = -offsetX / width
let roundIndex = progress.rounded()
currentIndex = max(min(currentIndex + Int(roundIndex), list.count - 1), 0)
currentIndex = index
})
.onChanged({ value in
let offsetX = value.translation.width
let progress = -offsetX / width
let roundIndex = progress.rounded()
index = max(min(currentIndex + Int(roundIndex), list.count - 1), 0)
})
)
}
.animation(.easeInOut, value: offset == 0)
}
}
用户(简体):
import Foundation
import SwiftUI
struct User: Identifiable{
var id = UUID().uuidString
var userName: String
var userImage: String
}
内容 View :
import SwiftUI
struct ContentView: View {
@State var currentIndex: Int = 0
@State var users: [User] = []
var body: some View {
VStack() {
Carousel(index: $currentIndex, items: users) {user in
GeometryReader{proxy in
let size = proxy.size
Image(user.userImage)
.resizable()
.aspectRatio(contentMode: .fill)
.frame(width: size.width)
.cornerRadius(12)
}
}
.padding(.vertical,40)
// Indicator dots
HStack(spacing: 10){
ForEach(users.indices,id: \.self){index in
Circle()
.fill(Color.black.opacity(currentIndex == index ? 1 : 0.1))
.frame(width: 10, height: 10)
.scaleEffect(currentIndex == index ? 1.4 : 1)
.animation(.spring(), value: currentIndex == index)
}
}
.padding(.bottom,40)
}
.onAppear {
for index in 1...5{
users.append(User(userName: "User\(index)", userImage: "user\(index)"))
}
}
}
}
关于ios - 在 PageTabViewStyle (SwiftUI 2.0) 或 PageViewController/PageView (带有 UIKit 界面) 上显示部分上一个和下一个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63094498/
考虑 PageView我们有一个的用法 PageView在另一个里面: PageView( children: [ Container(color: Colors.red), Co
如何包装 PageView 的内容,以便 Indicators 出现在 PageView 结束位置的正下方?。现在 PageView 填满了整个屏幕,而 Indicators 位于屏幕底部。下面是 P
跟踪页面浏览量的最佳方法是什么?例如:SO 有一个问题有多少次观看,但点击刷新并没有增加观看次数。 我读过使用 cookie 是一种很好的方法,但我不知道这不会失控。 我已经到处搜索,找不到一个好的答
我对 Flutter 和构建我的第一个真正的应用程序还很陌生。我实现了一个路由器类并从用于导航的图标按钮生成命名路由。下一步,我还想通过滑动在 3 个屏幕之间切换。 我的结构是: main.dart
我有带有 PageView 小部件的简单页面,里面有 ListView。滚动 PageView 将不起作用。原因很简单。因为指针事件被嵌套的 child 消耗了。 @override Widg
我有一个简单的页面 View : PageView( controller: _pageController, physics: PlatformScrollPhysics.getPlatfo
最近也出现过类似的问题,不过已经在 GitHub 上解决并关闭了。由于我是新手,我可能会在这里遗漏一些东西。方向更改后,页面索引恢复为零,但选定的 BottomNavigationBarItem 保持
我正在尝试更改滚动速度并使其在此PageView项目上变得流畅: PageView.builder( // store this controller in a Sta
我想使用带有垂直轴的 PageView 并使用鼠标滚动在页面之间移动,但是当我使用鼠标滚动时页面不滚动...仅页面单击并向上/向下滑动时滚动。 有什么办法吗? 我想保留属性 pageSnapping:
当滑动页面 View 上的页面时,它有一种默认动画,可以将页面带到屏幕中央。我想让这个滑动的动画曲线和持续时间冷却下来,按下按钮上的 animateTo() 是相同的。 我已经尝试了所有不同的曲线和持
我想使用带有垂直轴的 PageView 并使用鼠标滚动在页面之间移动,但是当我使用鼠标滚动时页面不滚动...仅页面单击并向上/向下滑动时滚动。 有什么办法吗? 我想保留属性 pageSnapping:
当滑动页面 View 上的页面时,它有一种默认动画,可以将页面带到屏幕中央。我想让这个滑动的动画曲线和持续时间冷却下来,按下按钮上的 animateTo() 是相同的。 我已经尝试了所有不同的曲线和持
我的图像没有完全适应屏幕。顶部和底部有白色边框我的图像有 700x1002。 有人可以帮助我获得这些边缘并使图像/容器完全适合屏幕吗? 布局.xml:
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 11 年前。 Improve thi
您好,如果我按下第一个页面选项卡上的按钮,我试图跳转到第二个页面选项卡。目前我只知道我的第二页小部件的调用路由但 bottomnavbar 不存在......我不知道如何从我的第一页选项卡调用我的父小
我制作了一个用作图像轮播的 PageView。如何让它在 Flutter 延迟一段时间后自动在页面之间无限滚动? new PageView( children: List {
我希望用户在 PageView 中的页面之间滚动,但我不想在他们尝试在第一页之前和最后一页之后滚动时向他们显示动画。我可以在彩色动画、黑色动画和不滚动之间切换,但我找不到任何禁用动画的可能性。 如果没
我使用 Flutter 编程才一个半月,还很缺乏经验。但是我有一个问题,我在互联网上找不到答案。我需要一个主要由 PageView 组成的应用程序。不幸的是,对于 PageView,所有页面的大小始终
我在我的 flutter 应用程序中使用 PageView 构建器来显示可滚动的卡片。为此,我首先创建了一个小部件 _buildCarousel 和小部件 _buildCarouselItem 以使用
我有一个显示页面列表的 pageView。 应用程序提供了一个 + 按钮,用于在集合的末尾添加一个新页面。 一旦成功创建了这个新页面,我需要 pageView 自动跳转到最后一页。 如果我尝试重新显示
我是一名优秀的程序员,十分优秀!