Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
34 views

The issue I'm having is that, even though scrolling with the trackpad and the drag gesture both work to flip through pages in the scrollview, the animation when landing on a page is jerky and not ...
KaliforniaGator's user avatar
0 votes
2 answers
123 views

Want B over A in Zstack, Offset of scroll needs to be 200 (height of A). Either B is pinned to top and has 200 offset or B starts at 200 y position and as we scroll up its y also changes, so after 200 ...
Ankit Srivastava's user avatar
1 vote
0 answers
105 views

I'd like to achieve a layout similar to the one shown in the Apple Fitness app. When I insert a ScrollView into a TabView, everything works fine, but if I try to add a NavigationStack to wrap the ...
HAS's user avatar
  • 35
0 votes
0 answers
64 views

I need to render a wheel picker inside a ScrollView in my Expo app. I tried using WheelPickerExpo but I keep getting this error: VirtualizedLists should never be nested inside plain ScrollViews with ...
Zafersiar Konyar's user avatar
1 vote
2 answers
146 views

I have simple setup to reproduce this: struct ContentView: View { var body: some View { NavigationStack { VStack { Rectangle() ...
MegaManX's user avatar
  • 8,920
0 votes
1 answer
144 views

The following code will render a list of items and a button to shuffle them and change their height withAnimation. If you scroll down and shuffle it you will eventually see glitches in the animation, ...
styke's user avatar
  • 2,186
0 votes
0 answers
43 views

The following code works properly, ensuring the list is scrolled at the correct ID when first rendered: import SwiftUI struct DataItem: Identifiable { let id: Int let height: CGFloat init(id: ...
styke's user avatar
  • 2,186
1 vote
1 answer
183 views

When showing a popover: struct ValueRowView<Content: View, PopoverContent: View> : View { let label: String let value: Content @State private var showPopover: Bool = false let ...
meaning-matters's user avatar
0 votes
1 answer
84 views

I've three views which I've added in a LazyVStack in a ScrollView. My intention is to stick RewardsTabItems to top and not let RewardsTabContainer scroll behind RewardsTabItems. I have achieved the ...
Shikha Sharma's user avatar
0 votes
0 answers
40 views

I have this main component: export default function AppNavigator() { return ( <NavigationContainer> <Stack.Navigator> <Stack.Screen name="test" component={...
plsHelpMe's user avatar
3 votes
2 answers
155 views

I have a very basic view that has a background (Color.red) and some content inside a ScrollView. The view worked great until I noticed something. After selecting the text field and tappint at the ...
Radioactive's user avatar
1 vote
1 answer
125 views

I'm struggling with the new edge-to-edge display introduced by default with SDK 36. My scroll view contents are behind the navigation bar even when scrolled to the bottom. I had a look at the "...
Schorschii's user avatar
0 votes
2 answers
66 views

I write project in react-native and have weird issue. in my home page i have horizontal ScrollView, and inside it components that contain buttons, but the buttons not work. e.g. pressing on the ...
ayala's user avatar
  • 178
0 votes
0 answers
107 views

I'm building a song-organizing component for my app in React Native and I'm trying to use the native Modal component. The songs are listed in a ScrollView. The app allows the user to delete songs one-...
forest's user avatar
  • 1
0 votes
2 answers
120 views

Here is my problem: I have a ScrollView with a list of elements: ScrollView { VStack(spacing: 3) { ForEach(testObjects) { obj in ObjItem(obj: obj) } } } The ...
Robert Kubin's user avatar
1 vote
1 answer
571 views

I am using @gorhom/bottom-sheet in my React Native application to display additional details. The bottom sheet itself works perfectly—it expands and collapses as expected. However, the content I'm ...
Jobie J's user avatar
  • 284
1 vote
1 answer
73 views

I'm trying to implement similar functionality to how Gmail and Outlook apps works, e.g. user can swipe left/right to navigate between emails and inside email you can also horizontally scroll ...
ErnestJ's user avatar
  • 333
2 votes
0 answers
135 views

I'm building a login screen in .NET MAUI and using a ScrollView to allow vertical scrolling. On Android, everything works fine — when the user taps on the Entry (email field), the screen scrolls and ...
Kirti Zare's user avatar
2 votes
1 answer
318 views

I'm working with React Native, and I have a part of my app that contains some input fields inside a scrollable screen. When I tapped on a field, it would gain focus, but after scrolling, the field ...
Gabi Mangili's user avatar
0 votes
1 answer
60 views

I have customize my own modal in react native. Here is the code i have written. <Modal animationType="slide" transparent={true} visible={visible} onRequestClose={onDismiss} ...
Nayan Chauhan's user avatar
0 votes
0 answers
56 views

I've a following XAML which works in Android, but not in iOS: <ScrollView HorizontalScrollBarVisibility="Never"> <Grid RowDefinitions="Auto,*"> ...
ErnestJ's user avatar
  • 333
2 votes
1 answer
65 views

I am trying to implement a FlatList with full screen size items, but haven't been able to do it without manually setting the items height based on the available screensize and I was wondering if it ...
xeitor's user avatar
  • 397
2 votes
1 answer
378 views

I'm trying to create an animated header that moves based on scroll position using React Native Reanimated, but the useScrollViewOffset hook isn't tracking scroll events properly when combined with ...
kunal sharma's user avatar
0 votes
0 answers
30 views

I'm trying to implement infinite scroll in a FlatList (let’s call it NestedList) that is rendered as the ListHeaderComponent of a parent FlatList (MainList) in React Native. ⚙️ What I'm trying to do: ...
Anis Amh's user avatar
0 votes
1 answer
223 views

I have a basic paged ScrollView using scrollTargetBehavior as .viewAligned(limitBehavior: .alwaysByOne) or .paging. It is a full screen vertical pager i.e. GeometryReader { geo in ScrollView(....
Nick Jones's user avatar
2 votes
4 answers
308 views

I have created a scroll view with multiple textfield in vertical stack.Scrolling is working perfect. After clicking on textfield it autoscrolled above keyboard, but I need more space between keyboard ...
Saurabh pandey's user avatar
-4 votes
1 answer
189 views

I'm building a 2D level editor scene in Unity for my game, which includes custom width and height. Setup I have two text inputs where the user enters width and height. Based on those inputs, I ...
bpGame's user avatar
  • 1
0 votes
1 answer
62 views

In iOS app written with SwiftUI I need a ScrollView to scroll to certain object that has certain ID. I'm using scrollTo function of ScrollViewReader to do this and it works while ScrollView is not ...
AlexanderZ's user avatar
  • 2,150
0 votes
1 answer
78 views

My task is to make a scrollview, which receives an array of strings and an overlay, which is located in the center. When some view gets into this overlay, it should immediately align to its borders, ...
Artem T's user avatar
  • 23
0 votes
1 answer
233 views

I am trying to create a ScrollView with a LazyVStack where two headers are pinned at the top. It should also work within a NavigationStack using large display mode for the title. Both headers should ...
merkredez's user avatar
0 votes
1 answer
70 views

Okay, so I have a Horizontal ScrollView that I cant access because the images I have are vertical ones that are pretty big in definition. Therefore even if I give it a frame, it overflows over the ...
Aleck David Holly's user avatar
2 votes
0 answers
212 views

import SwiftUI import Kingfisher struct WorksDateView: View { let columns: [GridItem] = [ GridItem(.flexible(), spacing: 8), GridItem(.flexible(), spacing: 8), ...
Windy418's user avatar
0 votes
0 answers
82 views

I’m working on a major update for my app and I’m aiming to improve the design to match premium standards, similar to Apple’s design approach. The app I’m working on is SignDict, which displays both ...
Antonio A. Chavez's user avatar
0 votes
1 answer
108 views

I want to use 2 scrollView. One on top of the other. The one below can push over the one above. Here is what i currently have: Blue rectangle - is an item in scrollView which I can scroll. Bottom(631,...
 Dmitriy Greh's user avatar
4 votes
2 answers
770 views

I use dnd-kit for react in a tanstack-table surrounded by a div which has scrollbars. The Problem is, as shown in the gif below, i can scroll into nothing. I want to prevent that. It should only ...
Andresch Serj's user avatar
0 votes
0 answers
37 views

I'm attempting to write my first MacOS app, after a number of years writing iOS apps. Fun & games. Anyway, I'm having a problem when I create a new NSWindow, & use NSHostingView with SwiftUI ...
SomaMan's user avatar
  • 4,174
0 votes
0 answers
41 views

I'm creating this section of a website where images would slide into view when in the viewport. I just learned about intersection observer and tried to implement it, and it works fine. The only ...
TeDi's user avatar
  • 57
0 votes
1 answer
33 views

I want to have my Scrollview always visible as you can see in the photo The only problem is that I can manage to make the scrollbar background (this grey color) but not the white part that when you ...
Alex's user avatar
  • 1,976
0 votes
0 answers
138 views

I'm facing an issue with ScrollView in my newly created Android app. Previously, ScrollView worked perfectly in my projects, but now with the introduction of Edge-to-Edge in Android, ScrollView is not ...
Mamta's user avatar
  • 45
2 votes
2 answers
95 views

I'm trying to build custom WheelPicker. All almost done, but.... It's can be scrolled to each element except 2 and 3 for some reason. In the same time I can select any other element. Problem is only ...
Andrew's user avatar
  • 11.9k
0 votes
1 answer
40 views

import React from 'react'; import { View, Text, StyleSheet, FlatList, TouchableOpacity, Dimensions, PixelRatio } from 'react-native'; import LeftArrow from "../assets/icons/LeftArrowSvg"; ...
utkarsh's user avatar
  • 31
0 votes
1 answer
86 views

I need to display product categories. Each category contains multiple products that should scroll horizontally. When I click on a category item, the touch event doesn’t work consistently. Sometimes it ...
Rashed Mohammadi's user avatar
0 votes
0 answers
19 views

I am looking for some suggestions on how to implement a UI for a project I am working on. One of the activities is a review screen with long blurbs of text so I have them inside a linear layout that ...
Rich Morey's user avatar
0 votes
1 answer
83 views

I have a straightforward ScrollView that shows paging behavior like this: import SwiftUI struct ScrollTest: View { var body: some View { ScrollView { VStack{ ForEach(0..&...
helloimbrando's user avatar
1 vote
2 answers
56 views

I have encountered a problem and need your guidance to fix it. I am using a ScrollView to make the content vertically scrollable. However, when I try to scroll, the content does not move at all. I am ...
Hafiz Muhammad Zohair Ajmal's user avatar
1 vote
0 answers
52 views

I'm using LazyVGrid embed in a ScrollView in SwiftUI, when I open the caption panel in VoiceOver, the bottom item can't be fully shown.enter image description here It will be shown just right if I ...
Yuanjiang Chen's user avatar
1 vote
0 answers
59 views

I am having an issue with keeping the list view 'frozen' in place when new items are added if the user has scrolled down to view and item. Here is the code that I am currently using: import SwiftUI ...
jarv's user avatar
  • 11
2 votes
1 answer
78 views

I am coding for a scrollable website. It runs very well when I use a mouse, but I am facing an issue when using a laptop scroll pad. When I scroll using the laptop pad, these sections move twice as ...
Mohd Akarm's user avatar
0 votes
0 answers
36 views

I have a dialog with a plusIconButton that allows me to create new column. I can create new columns till I reach this equality allBomDocumentIds.length === styleOptions.length. In that moment I ...
Federico Giannini's user avatar
0 votes
1 answer
153 views

I am using a Custom WebView in my .NET MAUI application to display HTML content on Android. However, when the WebView is placed inside a ScrollView, the content does not appear on the UI. If I remove ...
Matthew Pans's user avatar

1
2 3 4 5
142