my_animated_widgets 0.0.1
my_animated_widgets: ^0.0.1 copied to clipboard
A collection of beautiful animated Flutter widgets with dark/light mode support.
my_animated_widgets #
A collection of beautiful, production-ready animated Flutter widgets — including a Plasma Globe, Orbital Action Menu, Sky Theme Toggle, and more.
Widgets #
| Widget | Description |
|---|---|
PlasmaGlobeWidget |
Interactive plasma ball with electric arcs that follow your touch |
OrbitalActionMenu |
FAB that expands into orbital action buttons with staggered animation |
SkyThemeToggle |
Animated dark/light mode toggle with sky & stars effect |
LiquidProgressBar |
Liquid wave progress indicator |
DarkModeToggle |
Simple animated dark/light mode switch |
Installation #
dependencies:
my_animated_widgets: ^0.0.1
Usage #
Plasma Globe #
import 'package:my_animated_widgets/my_animated_widgets.dart';
PlasmaGlobeWidget(
radius: 150,
primaryColor: Color(0xFF8B5CF6),
secondaryColor: Color(0xFF06B6D4),
)
Orbital Action Menu #
OrbitalActionMenu(
icon: Icons.auto_awesome,
color: Color(0xFF7C4DFF),
actions: [
OrbitalAction(
icon: Icons.receipt_long,
label: 'Invoice',
color: Colors.cyan,
onTap: () {},
),
],
)
License #
MIT © 2026 Ibraam Akram