Simple English Dictionary Based on Webster's Unabridged English Dictionary With Identicons for each word and a light weight utility to save your favorite words, in Flutter!
clone the repository
git clone https://github.com/Move37-Team/mywords.git
install the requirements
flutter pub get
Two dictionary files are used in this project. both are in json format.
assets/dictionary_web.json
is the Webster's Unabridged English Dictionary in json format with the following structure:
{
"word": "Meaning"
}
assets/trie_dict.json
is a list of all words in the above file but trie data structure
sample
{
"w": {
"o": {
"r": {
"d" : {
"_end_": "_end_"
}
}
}
}
}
assets/synonyms_dict.json
a dictionary of word synonyms
{
"word": "comma separated list of synonyms as a string"
}
- Webster's Unabridged English Dictionary provided by Project Gutenberg
dictionary_web.json
file provided by this reposynonyms_dict.json
scrapped from WordNet
if you make any changes, improvements or bug fixes please consider a PR
-
categorize words
-
add dictionary
-
custom word with custom definition
-
autocomplete
-
multiple language support
-
cloud backend