/card_flip

Primary LanguageDartApache License 2.0Apache-2.0

publish lib web

what is it

online

flipover

Record.mp4
Record_2021-12-23.mp4

how to use

pub

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,
})