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

An icon widget with a circular background.

example/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: RoundIcon(
              icon: Icons.person,
              backgroundColor: Colors.grey,
              iconColor: Colors.black),
        ),
      ),
    );
  }
}
1
likes
150
points
19
downloads

Publisher

verified publisherthiagoteixeira.dev

Weekly Downloads

An icon widget with a circular background.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on round_icon