word_generator 0.4.4 copy "word_generator: ^0.4.4" to clipboard
word_generator: ^0.4.4 copied to clipboard

A dart based util package for generating random nouns, verbs, names, strong password and validate the given password is strong or not.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:word_generator/word_generator.dart';

void main() => runApp(const MyApp());

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  helloFunction() {
    final wordGenerator = WordGenerator();
    print(wordGenerator.randomName());

    final password = PasswordGenerator();
    print(password.validatePassword('abcABC123!@#'));
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Material App',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Material App Bar'),
        ),
        body: Center(
          child: GestureDetector(
            onTap: () => helloFunction(),
            child: const Text('Hello World'),
          ),
        ),
      ),
    );
  }
}
7
likes
140
pub points
86%
popularity

Publisher

verified publisherkathirvelchandrasekaran.online

A dart based util package for generating random nouns, verbs, names, strong password and validate the given password is strong or not.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on word_generator