0 purchases
unicode blocks
This package will help u finding the ranges of unicode character from usd database.
https://unicode.org/Public/UCD/latest/ucd/Blocks.txt
Getting started #
To get started run this command to install latest version:
flutter pub add unicode_blocks
copied to clipboard
Usage #
To get the name of the block you can use UnicodeBlockNames class
print(UnicodeBlockNames.devnagari);
copied to clipboard
To get the codepoint range of the block you can use UnicodeBlock class
const block = UnicodeBlockConstant.devnagari;
print(block.start);
print(block.end);
copied to clipboard
To get the block constant from name you can use UnicodeBlock.fromName method
var block = UnicodeBlock.fromName("Devanagari");
print(block.start);
print(block.end);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.