The Geira Icons pack available as set of Flutter Icons.
👍 Like us on pub.dev!
In the dependencies:
section of your pubspec.yaml
, add the following line:
geira_icons: ^3.0.0
import 'package:geira_icons/geira_icons.dart';
class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return Container(
child: Icon(
// Use GIcons. Where googleLogo is the name of the icon
GIcons.googleLogo,
color: Colors.red,
size: 50.0,
),
);
}
}