glow_avatar 1.0.2 copy "glow_avatar: ^1.0.2" to clipboard
glow_avatar: ^1.0.2 copied to clipboard

A Flutter widget that displays circular avatars with a customizable glowing border, perfect for user profiles and UI effects.

example/lib/main.dart

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

void main() => runApp(const DemoApp());

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(
          title: const Text("GlowAvatar Example"),
          centerTitle: true,
        ),
        body: Center(
          /// Using GlowAvatar widget and change color and radius of glow effect
          child: GlowAvatar(
            radius: 60,
            glowColor: Colors.purple,
            child: const Icon(Icons.person, size: 50, color: Colors.black),
          ),
        ),
      ),
    );
  }
}
4
likes
160
points
15
downloads

Publisher

verified publisheryogeshmoradiya.shop

Weekly Downloads

A Flutter widget that displays circular avatars with a customizable glowing border, perfect for user profiles and UI effects.

Repository (GitHub)
View/report issues

Topics

#avatar #glow #ui

Documentation

API reference

License

MIT (license)

Dependencies

cupertino_icons, flutter

More

Packages that depend on glow_avatar