indexed 0.0.6 copy "indexed: ^0.0.6" to clipboard
indexed: ^0.0.6 copied to clipboard

outdated

indexed widget, allow you to order the items inside stack, sothing like z-index

Indexed #

its a widget allow you to order the items inside stack, sothing like z-index.

Online demo Video demo

Getting Started πŸš€ #

you can use it in 2 ways:

use Indexed widget #

Indexer(
    children: [
        Indexed(IndexedInterface
          // prefer add key when use AnimatedPositioned
          key: UniqueKey(),
          child: Positioned(
            //...
          )
        ),
    ],
);

implements IndexedInterface #

Indexer(
    children: [
        MyExtendsIndexed(),
        MyImplementsIndexed(),
    ],
);
// extends
class IndexedExtendsDemo extends IndexedInterface {
    int index = 5;
}
// implements
class IndexedExtendsDemo extends AnimatedWidget implements IndexedInterface {
    int index = 1000;
    //...

    //...
}

Next? #

  • Indexer
  • Indexer.shadow(shadow:[1,1,100],children:[...]) // coming soon
  • Indexed (the item in stack)

Support ☺️ #

you can buy me a coffee.

engoj :)

more packeges: Kplayer

66
likes
75
pub points
94%
popularity

Publisher

verified publisherphysia.dev

indexed widget, allow you to order the items inside stack, sothing like z-index

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on indexed