Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 4.77 KB

problems_en.md

File metadata and controls

51 lines (36 loc) · 4.77 KB
  1. How to monitor the location change of ScrollView? it mean I need to use ScrollController.addListener?

set controller to the child(ScrollView) attribute

  1. What is the purpose of position and scroll Contorller exposed in RefreshController?

First of all, scrollController is a pre-existing api. When it was changed later, it was found that scrollController had a share problem, so it was abandoned and was not intended to be deleted. Maybe some people quote it, deleting it will cause some people having problems. The main reason for exposing these two things is that in some cases, addListener is not needed, but only needed. Control the jump. For example, when I implement a chat list, I just need to control ScrollView to scroll to the bottom, but I don't need to monitor its location.

  1. throw error,with a hit text"Horizontal viewport was given unbounded height.",How to solve?

If you have this error message, it's usually because there's no limit on the height of the child. For example, PageView, you can't put it in the child directly. You need to give PageView a limit on the height.

  1. I have a need to disable pull-up loading when I don't have a screen, but I don't know how to calculate the height in ScrollView. Each item has a different height. How to solve it?

In RefreshConfiguration, there is an attribute hideFooterWhenNotFull, which in most cases can help you calculate and determine whether or not to hide.

  1. Does the indicator support custom frame animation? For example, I want to change the GIF schedule with drag-and-drop, reach a certain state and start cycling.

Now this question has been solved ,check out this plugin,can help you controll gif progress,and example is here

  1. What is the relationship between the values of three variables in Spring Decription and how to use these values to achieve the rebound effect I want?

This question suggests that you look up the API in flutter, and you need to understand a certain amount of physics and mathematics. Actually, I don't know how to calculate it.

  1. Under Android, footer uses ShowAlways style. What if I don't want it to bounce back?

RefreshConfiguration have a contribute maxUnderScrollExtent,0.0 indicate no rebound

  1. I want to start loading data half way from the screen. How do I set it up?

RefreshConfigurationhave a contribute footerTriggerDistance,you can use MediaContent or LayoutBuilder compute screen height

  1. IOS Status Bar Double-click Why ListView does not automatically scroll to the top?

the one,You give ScrollController to the child, so it's not PrimaryScrollController in Scaffold, so it doesn't jump. The second possibility is that your external Scaffold is not your ancestry Scaffold.

  1. Why is it that after using Cuper Navigation Bar (and not just this case), part of the list header is obscured?

Because I use CustomScrollView internally, and CustomScrollView doesn't inject padding like BoxScrollView does, so you need to inject padding or SafeArea yourself.

  1. Compatiable?

1.3.0 replaces a new method to implement the indicator. The internal indicator is implemented by monitoring scroll Controller position changes. There are no methods such as NotificationListener and GestureDector that may cause sliding gesture conflicts. So it should be compatible with most of the libraries that need to be used between gestures. However, some libraries may not be compatible and ScrollPhysics needs to be rewritten, which is clearly required for internal FrontStyle.

  1. I have a requirement that when footer is in a state where there is no more data, I want it to follow the end of the content and the other states remain at the bottom. Is that possible?

RefreshConfiguration's shouldFooterFollowWhenNotFull can solve

  1. Why not compatible with SingleChildView?

Because SingleChildView uses SingleChild as its internal Viewport, while other Viewports are basically MultipleChild, so I can't get sliver from its Viewport internally. You can't add header and footer. just put it into SmartRefresher's child instead.

  1. Why can't dragging to the maximum distance trigger refresh? Why load more without triggering? This kind of problem usually occurs on Android systems, mostly because maxOverScrollExtent and maxUnderScrollExtent limit the height of the maximum drag. You need to make sure that it is larger than triggerDistance because it's internal. Not automatically identifying and judging for you

15.Why performance become more and more slow with the large amount of data? this situation is mostly because the setting shrinkWrap=true and physic:NeverScrollPhysics,ScrollView must be as SmartRefresher's child。