FLUTTER ECOSYSTEM

Rodiii/flutter_bidirectional_listview

Flutter 양방향 ListView - 고정된 항목 수와 스크롤 경계를 가진 양방향으로 스크롤 가능한 항목을 갖춘 ListView입니다.

flutter_bidirectional_listview 프로젝트 이미지
Stars
7
Forks
1
최근 푸시(UTC)
2021. 10. 7.
프로젝트 상태
활성
Christoph Rothermel GitHub avatar
GITHUB User

Christoph Rothermel ↗

rot|h|echUlm, Germany공식 웹사이트 ↗
언어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.