russian_words 0.0.1 copy "russian_words: ^0.0.1" to clipboard
russian_words: ^0.0.1 copied to clipboard

outdated

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

Generating 5 interesting word combinations:


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

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

Features and bugs #

Please file feature requests and bugs at the issue tracker.

Inspired project #

https://github.com/filiph/english_words

12
likes
0
pub points
48%
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

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on russian_words