flexicon 0.8.0 copy "flexicon: ^0.8.0" to clipboard
flexicon: ^0.8.0 copied to clipboard

Flex Icon from Streamlinehq

example/main.dart

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

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text('Flexicon Example'), leading: Icon(FlexIcon.remix.home2)),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            Icon(FlexIcon.remix.heart, size: 48.0, color: Colors.red),
            SizedBox(height: 16),
            Icon(FlexIcon.remix.starBadge, size: 48.0, color: Colors.amber),
            SizedBox(height: 16),
            Icon(FlexIcon.remix.lightbulb, size: 48.0, color: Colors.yellow),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(onPressed: () {}, child: Icon(FlexIcon.remix.magicWand1)),
    );
  }
}
0
likes
140
points
27
downloads

Publisher

verified publisherxkaper.dev

Weekly Downloads

Flex Icon from Streamlinehq

Homepage
Repository (GitHub)
View/report issues

Topics

#flutter #icon #icons #streamline #flexicon

Documentation

API reference

License

BSD-2-Clause (license)

Dependencies

flutter

More

Packages that depend on flexicon