Vertical Card Pager | Coderz Repository

vertical_card_pager

Last updated:

0 purchases

vertical_card_pager Image
vertical_card_pager Images

Free

Languages

Categories

Add to Cart

Description:

vertical card pager

Use dynamic and beautiful card view pagers to help you create great apps.
Preview #








Alignment #



Left
Center(Default)
Right










Installing #


Add dependency to pubspec.yaml
Get the latest version in the 'Installing' tab on pub.dartlang.org


dependencies:
vertical_card_pager: ^1.6.0
copied to clipboard

Import the package

import 'package:vertical_card_pager/vertical_card_pager.dart';
copied to clipboard

Adding VerticalCardPager

With optional parameters
@override
Widget build(BuildContext context) {
final List<String> titles = ["RED", "YELLOW", "BLACK", "CYAN", "BLUE", "GREY", ];

final List<Widget> images = [
Container(
color: Colors.red,
),
Container(
color: Colors.yellow,
),
Container(
color: Colors.black,
),
Container(
color: Colors.cyan,
),
Container(
color: Colors.blue,
),
Container(
color: Colors.grey,
),
];
return Scaffold(
body: SafeArea(
child: Column(
children: <Widget>[
Expanded(
child: Container(
child: VerticalCardPager(
titles: titles, // required
images: images, // required
textStyle: TextStyle(color: Colors.white, fontWeight: FontWeight.bold), // optional
onPageChanged: (page) { // optional
},
onSelectedItem: (index) { // optional
},
initialPage: 0, // optional
align : ALIGN.CENTER, // optional
physics : ClampingScrollPhysics() // optional
),
),
),
],
),
),
);
}
copied to clipboard
How to use #
Check out the example app in the example directory or the 'Example' tab on pub.dartlang.org for a more complete example.
Example on Web #


https://origogi.github.io/Vertical_Card_Pager/#/

Reference #
This package's animation is inspired from from this Dribbble art.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.