Last updated:
0 purchases
indexed
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(
//...
)
),
],
);
copied to clipboard
implements IndexedInterface #
Indexer(
children: [
MyExtendsIndexed(),
MyImplementsIndexed(),
],
);
// extends
class IndexedExtendsDemo extends IndexedInterface {
int index = 5;
}
// implements
class IndexedExtendsDemo extends AnimatedWidget implements IndexedInterface {
int index = 1000;
//...
//...
}
copied to clipboard
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.