russian_words 0.2.0 copy "russian_words: ^0.2.0" to clipboard
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 #

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

12
likes
130
pub points
47%
popularity

Publisher

unverified uploader

Utilities for working with Russian words. Generates well-sounding word combinations, and provides access to ~33000 Russian words.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on russian_words