not_static_icons 0.22.0 copy "not_static_icons: ^0.22.0" to clipboard
not_static_icons: ^0.22.0 copied to clipboard

Beautifully crafted animated icons for Flutter, crafted with Lucide — no Rive or Lottie required.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:not_static_icons/not_static_icons.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              // Simple icon usage
              AirplayIcon(),
              SizedBox(height: 20),

              // Customized icon
              AArrowDownIcon(
                size: 45, // icon size
                color: Colors.blue, // icon color
                animationDuration: Duration(
                  milliseconds: 800,
                ), // animation duration
                strokeWidth: 3.0, // icon stroke width
                hoverColor: Colors.red, // icon hover color
                enableTouchInteraction:
                    true, // enable touch interaction (for mobile devices)
                infiniteLoop: false, // infinite loop
                reverseOnExit: false, // reverse animation on exit
              ),
            ],
          ),
        ),
      ),
    );
  }
}
35
likes
0
points
964
downloads

Publisher

unverified uploader

Weekly Downloads

Beautifully crafted animated icons for Flutter, crafted with Lucide — no Rive or Lottie required.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on not_static_icons