tiktoklikescroller 0.0.2
tiktoklikescroller: ^0.0.2 copied to clipboard
A vertical fullscreen scroll implementation that snaps in place, similar to the TikTok app
example/example.dart
import 'package:flutter/material.dart';
import 'package:tiktoklikescroller/tiktoklikescroller.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
List colors = [Colors.red, Colors.blue, Colors.yellow];
return MaterialApp(
home: Scaffold(
body: TikTokStyleFullPageScroller(
contentSize: colors.length,
swipeThreshold: 0.2,
// ^ the fraction of the screen needed to scroll
swipeVelocityThreshold: 2000,
// ^ the velocity threshold for smaller scrolls
builder: (context, index) {
return Container(
color: colors[index],
child: Text(
"$index",
style: TextStyle(fontSize: 48, color: Colors.white),
));
},
),
),
);
}
}