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

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
pub points
71%
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

MIT (LICENSE)

Dependencies

string_scanner

More

Packages that depend on random_words