enefty_icons 1.0.7 enefty_icons: ^1.0.7 copied to clipboard
Flutter repository that contains Enefty Icon Pack. Enefty is an asset repo containing a set of icon assets made by Pickolab Studio and Licensed under CC BY 4.0
import 'package:enefty_icons/enefty_icons.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'Enefty Icons Example',
home: MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Icon(
EneftyIcons.people_outline,
),
),
);
}
}