Skip to content

Latest commit

 

History

History
 
 

codicon

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

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,
),