random_words 1.0.1 copy "random_words: ^1.0.1" to clipboard
random_words: ^1.0.1 copied to clipboard

outdatedDart 1 only

Utilities for generating random English words. It gives the option to retrieve random Nouns and Adjectives along with WordPairs. It is based off of Filip Hracek's english_words plugin

example/random_words_example.dart

// Copyright (c) 2017, filiph. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

import 'package:random_words/random_words.dart';

void main() {
  generateWordPairs().take(10).forEach(print);
  generateAdjective().take(10).forEach(print);
  generateNoun().take(10).forEach(print);
}
10
likes
30
points
4
downloads

Publisher

unverified uploader

Weekly Downloads

Utilities for generating random English words. It gives the option to retrieve random Nouns and Adjectives along with WordPairs. It is based off of Filip Hracek's english_words plugin

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

string_scanner

More

Packages that depend on random_words