FLUTTER ECOSYSTEM

Rodiii/flutter_bidirectional_listview

Flutter द्विदिशात्मक ListView - दोनों दिशाओं में स्क्रॉल करने योग्य आइटम वाला ListView, जिसमें निश्चित आइटम संख्या और स्क्रॉल सीमाएँ होती हैं।

flutter_bidirectional_listview प्रोजेक्ट कवर
Stars
7
Forks
1
अंतिम पुश (UTC)
7 अक्टू॰ 2021
प्रोजेक्ट स्थिति
सक्रिय
Christoph Rothermel GitHub avatar
भाषाएँDartRubyObjective-CJava

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 2 आइटम
  • flutter{"sdk":"flutter"}
  • flutter_testडेवलपमेंट{"sdk":"flutter"}

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

Flutter Bidirectional ListView

Example

ListView with items that can be scrolled and lazy loaded in up and down direction with a fixed item count and scroll boundaries.

With this library the following is possible:

  • ListView can be scrolled in up (negative indices) and down (positive indices) direction
  • Lazy loading is possible for up and down direction
  • Scroll boundaries for top and bottom
  • ItemCount for negative and positive indices can/must be set

Limitations:

  • Min- and MaxExtents for scrolling must be set manually

Quick Usage

Replace your existing ListView with BidirectionalListView. Builder pattern must be used because of its infinite nature.

A complete tutorial how to use BidirectionalListView can be found here: Tutorial

Please refer to the example for usage: Quick-Link

Bugs/Requests

If you encounter any problems feel free to open an issue. If you feel the library is missing a feature, please raise a ticket on Github and I'll look into it. Pull Request are also welcome.