Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pepsighan/mdi-dart
5,400+ Material Design Icons for Flutter from the Community
https://github.com/pepsighan/mdi-dart
dart flutter icons material material-icons
Last synced: about 2 months ago
JSON representation
5,400+ Material Design Icons for Flutter from the Community
- Host: GitHub
- URL: https://github.com/pepsighan/mdi-dart
- Owner: pepsighan
- License: mit
- Created: 2019-02-08T17:15:41.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-12T17:55:25.000Z (over 2 years ago)
- Last Synced: 2024-06-19T05:56:37.048Z (6 months ago)
- Topics: dart, flutter, icons, material, material-icons
- Language: Dart
- Homepage: https://https://materialdesignicons.com/
- Size: 2.4 MB
- Stars: 35
- Watchers: 3
- Forks: 10
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Material Design Icons for Flutter
![pub version](https://badgen.net/pub/v/mdi) ![likes](https://badgen.net/pub/likes/mdi) ![sdk version](https://badgen.net/pub/sdk-version/mdi) ![platform](https://badgen.net/pub/flutter-platform/mdi) ![license](https://badgen.net/pub/license/mdi)
Material Design Icons generated using `@mdi/util` provided by [materialdesignicons.com](https://materialdesignicons.com).
### Installation
Add this to your package's pubspec.yaml file:
```yaml
dependencies:
mdi: ^5.0.0-nullsafety.0
```### Usage
```dart
import 'package:mdi/mdi.dart';class AccessPointButton extends StatelessWidget {
Widget build(BuildContext context) {
return IconButton(
icon: Icon(Mdi.accessPoint),
);
}
}
```### Naming
The icon names provided via `Mdi` are camel-cased variants of the original name.
##### Exceptions:
1. null -> nullIcon
2. switch -> switchIcon
3. sync -> syncIcon
4. factory -> factoryIcon### Contributing
If you want to contribute to this project, you may easily create issues and send PRs. Please take note that your code contributions will be applicable under MIT license unless specified otherwise.