indexed

Creator: coderz1093

Last updated:

Add to Cart

Description:

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

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.