word_generator 0.0.2 word_generator: ^0.0.2 copied to clipboard
A dart util package for generating random nouns and verbs. This package helps you to generate random words for your project without any hassle.
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() {
WordGenerator wordGenerator = WordGenerator();
print(wordGenerator.randomVerb());
}
@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'),
),
),
),
);
}
}