flexicon 0.6.0
flexicon: ^0.6.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),
),
);
}
}