-
-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Labels
composeLimitation of Jetpack Compose or issue with SwiftUI translationLimitation of Jetpack Compose or issue with SwiftUI translation
Description
In https://github.com/skiptools/skipapp-showcase navigate to the ScrollView playground, and scroll it.
Expected: There should be a scroll indicator on the right edge, like iOS
Actual: No scroll indicator
Even adding .scrollIndicators(.visible) doesn't help.
private struct VerticalScrollViewPlayground: View {
var body: some View {
ScrollView {
VStack {
ForEach(0..<30) { i in
Text("View: \(i)")
.padding()
}
}
}
.scrollIndicators(.visible)
.refreshable {
do { try await Task.sleep(nanoseconds: 3_000_000_000) } catch { }
}
}
}The scroll indicator is still hidden.

Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
composeLimitation of Jetpack Compose or issue with SwiftUI translationLimitation of Jetpack Compose or issue with SwiftUI translation