aura_icon 0.0.4 copy "aura_icon: ^0.0.4" to clipboard
aura_icon: ^0.0.4 copied to clipboard

AuraIcon is a visual interface layer for emotion-aware, voice-driven, and next-gen apps.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        backgroundColor: Colors.black,
        body: Center(
          child: AuraIcon(
            shape: AuraShape.circle,
            size: 150,
            radius: 20, // Tighter blob movement
            colors: [
              Colors.orange,
              Colors.deepOrange,
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
150
points
68
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

AuraIcon is a visual interface layer for emotion-aware, voice-driven, and next-gen apps.

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on aura_icon