Reputation: 195
Is there a way to implement this using PageView, any other package or even manually?
Upvotes: 0
Views: 253
Reputation: 691
You can achieve the same result using this package https://pub.dev/packages/flutter_swiper. You can customize the position of the cards to get the design you want
You can use the customLayoutOption to modify the position and can get the desired position.
customLayoutOption: CustomLayoutOption(
startIndex: 1,
stateCount: 4,
).addTranslate([
Offset(0.0, 0.0),
Offset(0.0, 0.0),
Offset(0.0, 0.0),
Offset(0.0, 0.0),
]).addScale([1, 0.8, 0.6, 0.4], Alignment.bottomLeft),
Upvotes: 2