Skip to content

theyakka/flutter_infinite_pageview

 
 

Repository files navigation

infinite_pageview

pub.dev

PageView but its infinite and can go left to the negatives!

Inspired by infinite_listview.

Example

Example

cd example
flutter run lib/main.dart

Usage:

import 'package:infinite_pageview/infinite_pageview.dart';

InfinitePageView(
    itemBuilder: (context, index) => Container(
        color: Colors.blue,
        child: Center(
            child: Text(
                style: TextStyle(
                    fontSize: 30,
                    color: Colors.white
                ),
                index.toString(),
            ),
        ),
    )
)

About

PageView but its infinite and can go left to the negatives!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 39.7%
  • CMake 32.5%
  • Dart 20.2%
  • Swift 2.9%
  • C 2.4%
  • HTML 2.0%
  • Other 0.3%