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.
- Host: GitHub
- URL: https://github.com/gluons/figures.dart
- Owner: gluons
- License: mit
- Created: 2019-05-08T15:21:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-11T12:58:43.000Z (about 7 years ago)
- Last Synced: 2026-03-11T17:47:11.100Z (3 months ago)
- Topics: dart, figures, symbols, unicode
- Language: Dart
- Homepage: https://pub.dev/packages/figures
- Size: 36.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# figures
[](./LICENSE)
[](https://pub.dev/packages/figures)
[](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'));
}
```