jam_icons 0.0.1 copy "jam_icons: ^0.0.1" to clipboard
jam_icons: ^0.0.1 copied to clipboard

Introducing the Jam Icons Flutter Package Unlock a stunning collection of over 940 pixel perfect icons, ideal for a wide range of common actions and items.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Jam Icons',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.orange,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: const Text(
            'Jam Icons',
            style: TextStyle(color: Colors.white),
          ),
          centerTitle: true,
        ),
        body: Padding(
          padding: const EdgeInsets.all(10.0),
          child: Center(
            child: Column(
              children: const [
                Icon(
                  JamIcons.anchor,
                  size: 60,
                ),
                SizedBox(height: 20),
                Icon(
                  JamIcons.accessibility,
                  size: 60,
                ),
                SizedBox(height: 20),
                Icon(
                  JamIcons.appleCircle,
                  size: 60,
                ),
                SizedBox(height: 20),
                Icon(
                  JamIcons.keyboard,
                  size: 60,
                ),
                SizedBox(height: 20),
                Icon(
                  JamIcons.headsetF,
                  size: 60,
                )
              ],
            ),
          ),
        ),
      ),
    );
  }
}
28
likes
140
pub points
41%
popularity

Publisher

verified publisheraddideveloper.blogspot.com

Introducing the Jam Icons Flutter Package Unlock a stunning collection of over 940 pixel perfect icons, ideal for a wide range of common actions and items.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on jam_icons