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

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

example/lib/main.dart

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

void main() {
  runApp(const MyApp());
}

/// This Widget is the main application widget example.
class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @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),
          ),
        ),
      ),
    );
  }
}
7
likes
0
pub points
70%
popularity

Publisher

verified publisherdatogedon.com

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

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_svg

More

Packages that depend on fui_kit