An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

app logo

# 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

![Example App](./assets/screenshots/image.png)

## Credits

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