https://github.com/softyesti/symbols_icon_pack
Flutter package that provides Symbol Icons. A file icon pack for code editors.
https://github.com/softyesti/symbols_icon_pack
dart flutter icon-pack iconset open-source package pubdev symbol-icons symbols
Last synced: 2 months ago
JSON representation
Flutter package that provides Symbol Icons. A file icon pack for code editors.
- Host: GitHub
- URL: https://github.com/softyesti/symbols_icon_pack
- Owner: softyesti
- License: agpl-3.0
- Created: 2024-11-30T06:05:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-30T08:20:50.000Z (over 1 year ago)
- Last Synced: 2025-10-25T23:42:44.756Z (8 months ago)
- Topics: dart, flutter, icon-pack, iconset, open-source, package, pubdev, symbol-icons, symbols
- Language: C++
- Homepage: https://softyes.com.br
- Size: 691 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README

# Symbols Icon Pack
Flutter package that provides Symbol Icons. A file icon pack for code editors. Made from the [Symbols - File Icons](https://www.figma.com/file/HYLMyRbIdSbIJQlqnd9pSN/Symbols---File-Icons?node-id=20521%3A84115&t=PyBzZOlVG5TXyEdx-1).
Big thanks to [miguelsolorio](https://github.com/miguelsolorio) the creators of this awesome icon pack for [Visual Studio Code](https://github.com/miguelsolorio/vscode-symbols)!
## Features
* Folder icons (73 items)
## Usage
```dart
import 'package:flutter/material.dart';
import 'package:symbols_icon_pack/symbols_icon_pack.dart';
class IconWidget extends StatelessWidget {
const IconWidget();
@override
Widget build(BuildContext context) {
return Card(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(SymbolsFolderIcons.folderIos),
const SizedBox(height: 8),
Text('Folder IOS'),
],
),
);
}
}
```
## Screenshots

## Credits
* SoftYes TI [\](https://softyes.com.br)
* João Sereia [\](mailto:joao.sereia@softyes.com.br)