symbols_icon_pack 0.2.0 symbols_icon_pack: ^0.2.0 copied to clipboard
Flutter package that provides Symbol Icons. A file icon pack for code editors.
Symbols Icon Pack #
Flutter package that provides Symbol Icons. A file icon pack for code editors. Made from the Symbols - File Icons.
Big thanks to miguelsolorio the creators of this awesome icon pack for Visual Studio Code!
Features #
- Folder icons (73 items)
Usage #
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 <softyes.com.br>
- João Sereia <joao.sereia@softyes.com.br>