tree: 8e8aa964dc0463d87f36c0d02d55bcd9f52ff56c [path history] [tgz]
  1. lib/
  2. analysis_options.yaml
  3. CHANGELOG.md
  4. LICENSE
  5. pubspec.yaml
  6. README.md
third_party/packages/codicon/README.md

codicon

codicon is an easy to use package that exposes vscode-icons for Flutter.

Example Usage

In the pubspec.yaml file add the codicon dependency as below:

dependencies:
#  codicon: any # uncomment and change for latest version

Import the codicon package where you want to use the icon:

import 'package:codicon/codicon.dart';

Use the icon in an Icon widget:

Icon(
  Codicons.lightBulb,
),