islamic_icons 0.0.5 islamic_icons: ^0.0.5 copied to clipboard
140+ beautiful islamic icons to use in your islamic dream project, with all the customization Flutter provides
Islamic Icons #
A Flutter library for Islamic Icons.
Note: All icon data is auto-generated based on the latest release of Islamic Icons.
Installation #
Add the dependency to your pubspec.yaml
file.
dependencies:
islamic_icons: any
We recommend flutter pub upgrade
to always stay updated with the latest release.
Usage #
The library exposes all of the Islamic Icons as IconData
.
import 'package:flutter/material.dart';
import 'package:unicons/unicons.dart';
class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return Container(
height: MediaQuery.of(context).size.height,
width: MediaQuery.of(context).size.width,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Icon(II.quran_1_o),
Icon(II.salat_o),
Icon(II.ruku_o),
],
),
);
}
}
License #
Unicons are Open Source icons and licensed under Apache 2.0. You're free to use these icons in your personal and commercial project. We would love to see the attribution in your app's about screen, but it's not mandatory.