random_words 1.0.0 copy "random_words: ^1.0.0" to clipboard
random_words: ^1.0.0 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
0
pub points
75%
popularity

Publisher

unverified uploader

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

unknown (LICENSE)

Dependencies

string_scanner

More

Packages that depend on random_words