enefty_icons 1.0.7 copy "enefty_icons: ^1.0.7" to clipboard
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

example/lib/main.dart

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,
        ),
      ),
    );
  }
}
30
likes
130
pub points
87%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on enefty_icons