iconify_flutter 0.0.7 iconify_flutter: ^0.0.7 copied to clipboard
100+ open source icon sets for Flutter to make your app more beautiful
import 'package:flutter/material.dart';
import 'package:iconify_flutter/iconify_flutter.dart';
import 'package:iconify_flutter/icons/zondicons.dart'; // for Non Colorful Icons
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: GridView.builder(
itemCount: Zondicons.list.length,
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 6),
itemBuilder: (context, index) {
return FractionallySizedBox(
heightFactor: .5,
widthFactor: .5,
child: Iconify(
Zondicons.iconsList[index],
size: 25,
),
);
}),
appBar: AppBar(
title: Text(widget.title),
),
);
}
}