aves/lib/ref/unicode.dart
Thibault Deckers e8893f7f07 refactor
2023-03-24 17:29:50 +01:00

9 lines
352 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// cf Flutter's `foundation/unicode.dart` for bidi related characters
class Unicode {
static const noBreakSpace = '\u00A0';
static const multiplicationSign = '\u00D7'; // ×
static const emDash = '\u2014'; // —
static const bullet = '\u2022'; // •
static const ratio = '\u2236'; //
static const whiteMediumStar = '\u2B50'; // ⭐
}