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

https://github.com/gluons/figures.dart

Unicode symbols for Dart.
https://github.com/gluons/figures.dart

dart figures symbols unicode

Last synced: about 2 months ago
JSON representation

Unicode symbols for Dart.

Awesome Lists containing this project

README

          

# figures
[![GitHub](https://img.shields.io/github/license/gluons/figures.dart.svg?style=flat-square)](./LICENSE)
[![Pub](https://img.shields.io/pub/v/figures.svg?style=flat-square)](https://pub.dev/packages/figures)
[![Travis (.com)](https://img.shields.io/travis/com/gluons/figures.dart.svg?style=flat-square)](https://travis-ci.com/gluons/figures.dart)

Unicode symbols with Windows CMD fallbacks. (Dart port)

> Port from [@sindresorhus](https://github.com/sindresorhus/)' [**figures**](https://github.com/sindresorhus/figures) in JavaScript.

## Usage

```dart
import 'package:figures/figures.dart';

void main() {
/*
* Windows: √
* Other OS: ✔
*/
print(figures['tick']);

/*
* Windows: √ check
* Other OS: ✔ check
*/
print(replaceFigures('✔ check'));
}
```