russian_words

License: MIT Pub

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);
}

Generating 5 interesting word combinations:


generateWordPairs().take(5).forEach(print);

///create 5 verb + noun combinations
generateWordPairs(typeOfPair: TypeOfPair.verbNoun).take(5).forEach(print);

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

Libraries

russian_words