fui_kit 1.0.3 fui_kit: ^1.0.3 copied to clipboard
Our library offers more than 450 vector SVG icons in 5 different styles or themes, giving you a range of options to choose from and the flexibility to use them in a variety of design contexts.
import 'package:flutter/material.dart';
import 'package:fui_kit/fui_kit.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Fui Kit Example'),
),
body: Center(
child: IconButton(
onPressed: () {},
icon: FUI(
file: FUIcons.regularRounded.commentAlt, color: Colors.white),
),
),
),
);
}
}