Last updated:
0 purchases
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
Inspired project #
https://github.com/filiph/english_words
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.