world_names 0.0.2 copy "world_names: ^0.0.2" to clipboard
world_names: ^0.0.2 copied to clipboard

outdated

A new Flutter package that generates random most popular names in the world

This package will generate random names from all over the world.

Features #

Generates a random name from a random country.

Getting started #

To get started just add the package in to your project

Usage #

Here's an example on how to use this package

import 'package:world_names/world_names.dart';

import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    String name = NameGenerator.getName();
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Flutter Name Generator')),
        body: Center(child: Text(name)),
      ),
    );
  }
}


Additional information #

This is an extremely simple package.

2
likes
0
points
17
downloads

Publisher

verified publisherbuildappswithpaulo.com

Weekly Downloads

A new Flutter package that generates random most popular names in the world

Homepage

License

unknown (license)

Dependencies

flutter, flutter_web_plugins

More

Packages that depend on world_names