russian_words 0.2.0
russian_words: ^0.2.0 copied to clipboard
Utilities for working with Russian words. Generates well-sounding word combinations, and provides access to ~33000 Russian words.
russian_words #
A package containing ~33000 the most common Russian words and some utility functions.
Usage #
Printing the top 50 most used nouns, adjectives, verbs in the Russian language:
import 'package:russian_words/russian_words.dart';
void main() {
nouns.take(50).forEach(print);
adjectives.take(50).forEach(print);
verbs.take(50).forEach(print);
///all words
allWords.take(50).forEach(print);
}
copied to clipboard
Generating 5 interesting word combinations:
generateWordPairs().take(5).forEach(print);
///create 5 verb + noun combinations
generateWordPairs(typeOfPair: TypeOfPair.verbNoun).take(5).forEach(print);
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.
Contributing #
To contribute, follow the following easy steps
Step 1
- Fork this repo!
Step 2
- Make your own updates
Step 3
- Create a new pull request