bold_icons 0.0.3 copy "bold_icons: ^0.0.3" to clipboard
bold_icons: ^0.0.3 copied to clipboard

Collection of beautiful and well-designed icons from Bold UI Kit

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'bold_icons Example',
      home: Scaffold(
        body: Column(
          children: [
            Text(
              'Bold Icons Example',
              style: Theme.of(context).textTheme.titleLarge,
            ),
            const SizedBox(height: 16.0),
            const Text('Icon(BoldIcons.mosquito, size: 24.0)'),
            const Icon(
              BoldIcons.mosquito,
              size: 24.0,
            ),
            const SizedBox(height: 16.0),
            const Text('BoldIcon(BoldIcons.mosquito)'),
            const BoldIcon(
              BoldIcons.mosquito,
            ),
            const SizedBox(height: 16.0),
            const Text('BoldIcon(BoldIcons.mosquito, color: Colors.red)'),
            const BoldIcon(
              BoldIcons.mosquito,
              color: Colors.red,
            ),
          ],
        ),
      ),
    );
  }
}
1
likes
160
points
18
downloads
screenshot

Publisher

verified publisherhanmajid.com

Weekly Downloads

Collection of beautiful and well-designed icons from Bold UI Kit

Repository (GitHub)
View/report issues

Topics

#assets #icons #ui

Documentation

API reference

Funding

Consider supporting this project:

github.com

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on bold_icons