Arco Design Icons

pub package

Unofficial Flutter package for Arco Design System icons. Arco Design System is made by Arco Design and licensed under CC BY 4.0.

Installation

Add arco_design_icons dependency to your Flutter project:

dependencies:
  arco_design_icons: ^<latest-version>

Usage

Import the package in your Flutter file and use one of these 2 alternatives to display your icons:

import 'package:arco_design_icons/arco_design_icons.dart';

/// Alternative 1 - Using Icon widget:
Icon _icon = Icon(ArcoDesignIcons.fire, size: 48.0);

/// Alternative 2 - Using ArcoDesignIcon widget:
Icon _icon = ArcoDesignIcon(ArcoDesignIcons.fire);

Issues

For issues, file directly in the repository.

Icons

All Arco Design icons can be viewed on its Figma file here.

Find this library useful? ❤️

Support it by joining stargazers for this repository. ⭐️
Also, follow me on GitHub for my next project! 🤩

License

Copyright 2023 hanmajid (Muhammad Farhan Majid)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.