card_flip 0.0.5 card_flip: ^0.0.5 copied to clipboard
A flip card layout Flutter project.
what is it #
https://user-images.githubusercontent.com/9412501/147241403-9096fa5c-db76-4106-828b-f9f0b454747b.mp4
https://user-images.githubusercontent.com/9412501/147240240-c81bece3-52f7-4ef9-a08b-69ca6b748e4d.mp4
how to use #
FlipLayout(
duration: 800,
foldState: true,
foldChild: FoldCard(),
children: List.generate(5, (index) {
return itemWidget(index);
}),
)
customization #
const FlipLayout({
Key? key,
this.children,
this.foldChild,
this.foldState = false,
this.decoration,
this.duration = 1000,
this.borderRadius,
this.backgroundColor = Colors.grey,
this.background,
})