scrollview Questions

2

Here is my layout xml. I would like to be able to pull the scroll view to refresh. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schem...
Ness asked 10/4, 2014 at 1:6

3

In the flutter, I use NestedScrollView, in the Body I use TabBarView. On the pages in TabBarView, I use keep alive true, but in this case the scroll is synchronized. How can I not synchronize them....
Dolly asked 5/2, 2024 at 7:22

5

When I slowly pull down to refresh, I see the UIActivityIndicator circle slowly get more complete before it starts the refresh. Just before the circle is complete and the refresh actually triggers,...
Leo asked 20/5, 2014 at 21:6

4

I would like to have a set of tabs that each have a FlatList inside a ScrollView. This is similar to the layout of Instagram or Twitter. I am aware that there are some issues with having a FlatLi...
Asterisk asked 14/2, 2019 at 15:14

4

I've build a ScrollView which contains 0-3 images and a multiline text field in a VStack. I also added a ScrollViewReader inside the scrollview and use it to scroll to the bottom of the text field ...
Lattimore asked 30/1, 2023 at 20:16

9

Solved

I get this error when using the AppBar: The Scrollbar's ScrollController has no ScrollPosition attached. This is my CustomScrollBar: class CustomScrollBar extends StatelessWidget { final Widget ...

2

Solved

I made a custom nav bar. and added a scroll view below it. The problem I am getting is when I scroll down, the data inside scroll view comes over the navigation bar. Here is the screenshot: My cod...

20

Solved

I want to be able to resize and move an image in SwiftUI (like if it were a map) with pinch to zoom and drag it around. With UIKit I embedded the image into a UIScrollView and it took care of it, ...
Corporal asked 11/10, 2019 at 13:0

5

I want to scroll the view down when the bottom sheet is fully up (Dragged up to complete screen). It works good when it scrolls up but it does not work when it scrolls down. Rather, the whole botto...
Waft asked 1/11, 2016 at 9:43

5

I’m after a vertical scrollview that’s infinite both ways: scrolling up to the top or down to the bottom results in more items being added dynamically. Almost all help I’ve encountered is only conc...
Chunchung asked 7/1, 2021 at 14:52

6

Solved

I'm trying to use the refreshable modifier on a Scrollview in an app that targets iOS 16. But, the asynchronus task gets cancelled during the pull to refresh gesture. Here is some code and an attac...
Azazel asked 1/1, 2023 at 22:33

3

Solved

I have a simple SwiftUI list that I want to scroll to a row when a user click on a button. I have copied this code from hackingwithswift. It suppose to work, but it does not do. struct ContentView:...
Spirituous asked 23/11, 2020 at 21:37

8

Solved

Any Modifier available to stop bounce of ScrollView in swiftUI ? struct RoomDetailsView: View { var body: some View { ScrollView(showsIndicators: false) { Image("test") Text("Hello Text") .....
Symposium asked 11/11, 2019 at 10:19

4

There was a property in the initializer with ScrollView(alwaysBounceVertical: false) but I cant't seem to find it anymore. Does anyone know how I can disable the vertical bounce / overscroll on a ...
Czar asked 21/7, 2019 at 10:43

14

Solved

If I try to scroll to the bottom of my ScrollView, it bounces back to its default position and won't let me view the entirety of its content. My ( truncated ) setup is fairly simple : <View&g...
Sympathetic asked 6/4, 2017 at 12:41

3

Solved

I recently upgraded my laptop to Macbook M1 pro. I have a scroll view and it used to scroll with inertia when I use three finger to drag on my old Macbook air. Now with the M1 chip there is no iner...
Merrile asked 2/7, 2021 at 10:7

2

Solved

I am unable to scroll down to the bottom of any page in an Android app using Appium. Multiple approaches were attempted, including those found on Stack Overflow. (It seems this challenge is common....
Bloodfin asked 26/7, 2018 at 7:47

14

Solved

In the detailViewController of a UISplitView I have subviews added to a UIStackView inside a UIScrollView. Just using system buttons without subviews or images, results in responsive buttons, but ...
Haler asked 26/8, 2016 at 13:19

8

Solved

I need to find out the exact moment when my ScrollView stops moving. Is that possible with SwiftUI? Here would be an equivalent for UIScrollView. I have no idea after thinking a lot about it... A s...
Alessi asked 29/11, 2020 at 16:45

4

Solved

I am using scroll view in a fragment but the screen does not scroll up when the keyboard is shown as it should be. Here is the scenario: I have mainActivity which has bottom navigation bar plus a ...
Conversable asked 18/9, 2018 at 17:23

13

Solved

I'm new to Flutter so I train myself by making a simple form. I realized while I was debugging on my iPhone the virtual keyboard triggered an error: "A RenderFlex overflowed by 29 pixels on th...
Mcmorris asked 20/11, 2018 at 17:33

2

How to hide/show view when scrolling up/down android like Foodpanda app I want to hide/show view (linear or relative layout) when ScrollView is up/down like this above gif. But my app I do not ...
Steib asked 24/2, 2018 at 9:57

9

Solved

Is there any way to show the scroll indicator on the ListView? Here is my basic code: ListView.builder( itemCount: 50, itemBuilder: (context, index) => ListTile(title: Text("Item= ${index...
Clyte asked 28/10, 2018 at 10:50

12

Solved

Currently I have a view like this: struct StatsView: View { var body: some View { ScrollView { Text("Test1") Text("Test2") Text("Test3") } } } This renders a v...
Telegonus asked 19/6, 2020 at 4:12

2

I set up a ScrollView like so: ScrollView(.vertical) { // ... } .scrollDismissesKeyboard(.interactively) .safeAreaInset(edge: .bottom, spacing: 0) { TextInputCellView(with: Color(hex: 0xf5f9fc)) ...
Brabble asked 19/9, 2022 at 8:18

© 2022 - 2025 — McMap. All rights reserved.