fui_kit 2.0.1 copy "fui_kit: ^2.0.1" to clipboard
fui_kit: ^2.0.1 copied to clipboard

Our library offers more than 498 vector SVG icons in 6 different styles or themes.

FUI Flat UI Kit #

codecov

Flutter Test And Publish pub.dev

My package is called "fui" and it is a library of SVG icons for the Flutter framework. This library includes 498 open source icons provided by flaticon.com. I have named this package "fui" for Flat Uicons, as these icons are flat and easy to use in any design.

The "fui" library is easy to install and use in any Flutter project. Once installed, users will have access to a wide range of SVG icons that can be easily used in their designs. The icons are high quality and are designed for use in mobile and desktop applications.

In addition to being easy to use, the "fui" library is also completely free and is distributed under an open source license. This means that anyone can use these icons in their projects without worrying about copyright.

In summary, "fui" is a library of SVG icons for Flutter that includes 498 high-quality open source icons. It is easy to install and use, and is available for free under an open source license. If you need high-quality icons for your Flutter projects, "fui" is a great option.

FUI Kit is an easy-to-install Flutter library that contains 498 SVG icons. With FUI Kit, you can easily add high-quality icons to any Flutter project.

Installation #

To use FUI Kit in your Flutter project, add the following to your pubspec.yaml file:

dependencies:
    fui_kit: ^2.0.0

Then, run flutter packages get to install the library.

Usage #

To use an icon from FUI Kit in your Flutter project, simply use the FUI() widget, like so:

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

class FuiKitPage extends StatefulWidget {
  const FuiKitPage({super.key});

  @override
  State<FuiKitPage> createState() => _FuiKitPageState();
}

class _FuiKitPageState extends State<FuiKitPage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Fui Kit Example'),
      ),
      body: Center(
        child: FUI(RegularRounded.ADD, color: Colors.blue, height: 30,),
      ),
    );
  }
}

file: This is the path to the icon you want to use. color: This is the color you want to apply to the icon.

You can find a list of all available icons and their corresponding paths in the API reference.

Examples #

Here are some examples of how you can use FUI Kit in your Flutter project:

// Use a solid rounded icon
FUI(
	SolidRounded.BOOKMARK,
	color: Colors.amber, // optional
	with:40, // optional
	height:40 // optional
)
// Use a solid square icon
FUI(SolidRounded.HEART,color: Colors.red)

// Use a regular rounded icon
FUI(RegularRounded.USER,color: Colors.blue)

// Use a regular solid icon
FUI(RegularSolid.COMMENT,color: Colors.green)
import 'package:fui_kit/fui_kit.dart';

class MyWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return FUI(
      SolidRounded.BOOKMARK,
      color: Colors.amber,
    );
  }
}

Variants #

  • Regular Rounded: `RegularRounded.BOOKMARK`
    
  • Regular Straight: RegularRounded.BOOKMARK
  • Bold Rounded: BoldRounded.BOOKMARK
  • Bold Straight: BoldStraight.BOOKMARK
  • Solid Rounded: SolidRegular.BOOKMARK
  • Solid Straight: SolidStraight.BOOKMARK

List icons #

See all icons


With FUI Kit, you can easily add high-quality icons to any Flutter project. Give it a try and see how it can enhance your app!

fui_kit is a powerful and flexible tool that can help you add high-quality icons to your Flutter app quickly and easily. Whether you're building a shopping app, a social network, or any other type of app, fui_kit has the icons you need to make your app stand out.

7
likes
140
pub points
57%
popularity

Publisher

verified publisherdatogedon.com

Our library offers more than 498 vector SVG icons in 6 different styles or themes.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_svg

More

Packages that depend on fui_kit