jam_icons 0.0.1 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.
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,
)
],
),
),
),
),
);
}
}