TODO: Rotate expand toolbar.

Features

TODO: A set of icon buttons that can be rotated and expanded.

Usage

Include short and useful examples for package users. Add longer examples to /example folder.

    Stack(
        children: [
            RotateExpandToolbar(
                expandDuration: const Duration(milliseconds: 500),
                color: Colors.blue,
                iconSize: 24,
                children: [
                    RotateExpandToolbarItem(
                        icon: Icons.play_circle_outline_outlined,
                        color: Colors.amber,
                        onTap: () {},
                    ),
                    RotateExpandToolbarItem(
                        icon: Icons.circle_notifications_outlined,
                        color: Colors.green,
                        onTap: () {},
                    ),
                    RotateExpandToolbarItem(
                        icon: Icons.flag_circle_outlined,
                        color: Colors.red,
                        onTap: () {},
                    ),
                    RotateExpandToolbarItem(
                        icon: Icons.add_shopping_cart_outlined,
                        tooltip: "Shopping Cart",
                        onTap: () {},
                    ),
                ],
            )
        ],
    )