ultimate_data_generator 1.0.0 copy "ultimate_data_generator: ^1.0.0" to clipboard
ultimate_data_generator: ^1.0.0 copied to clipboard

It is the most complete offline data generator for prototyping using Flutter. It gives you access to a lot of realistic data

Ultimate Data Generator #

Ultimate Data Generator (UDG) is the most complete offline data generator for prototyping using Flutter. It gives you access to a lot of data that does not just look like place holder text but actual real looking data! By using this package, you will have access to diverse elements from basic data to a little bit more advanced one such as name, surnames, email, comments(classified by category), food names and ingredients used for them and so much more.

The online documentation

My instagram :P

The demo Apk

Quick usage #

The ultimate data generator can generate datas from 6 different categories, to know more about them please read The online documentation. Image generation is also supported (as local path). To use UDG you should first import the package then select the class you would like to use depending on what you want to generate (more in The online documentation. )

import'package:ultimate_data_generator/ultimate_data_generator.dart';
//rest of code
Container(
    color: Colors.pink,
    child:Image.asset(HumanGen.generateMaleImage(),fit: BoxFit.fill,),
)

A Short gif showcasing the demo app #

Usage and possible Limitations #

Well as far as I am concerned, I did not find any bug during my tests.However, due to the nature of this package, I would strongly recomment to generate your data in the model before placing your widget inside a listView.builder

generating data inside a list

ListView.builder(
     itemCount: litems.length,
     itemBuilder: (BuildContext ctxt, int Index) {
	 return Container(
          color: Colors.pink,
          child:Image.asset(HumanGen.generateMaleImage(),fit: BoxFit.fill,),
     );
   }
 )
  1. generate data from your model/ data manager
  2. create a list and feed it with the widget created by your data manager
//Datamanager.dart
// user is a widget, lets say a xard
List<user> createUser (int number)
{
	 list<user> userList;
	 for(int i=0;i<number;i++)
	 {
	 	userList.add(
			user(
				name: HumanGen.generateAFullName(),
				email: HumanGen.generateEmailFromMostRecentName(),
				profilePicturePath: HumanGen.generateMaleImage(),
				age: HumanGen.generateMidAdultAge(useExtension = true),
				profession: IndustryGen.generateJobOccupation(),
				homeLocation:PlacesGen.generateLocalAddress(),
			)
		)
	 }
}

now that you have you data, you can feed it into the listview

//Somewhere in your code
ListView.builder
(
     itemCount: userList.length,
     itemBuilder: (BuildContext ctxt, int Index) {
     return userList[index];
  }
)

Conclusion #

Thank you for using my package, feel free to contact me by mail or on my instagram if you have any issue, I will be happy to help

For help getting started with Flutter, view The
online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

13
likes
40
pub points
0%
popularity

Publisher

verified publisheremilecode.com

It is the most complete offline data generator for prototyping using Flutter. It gives you access to a lot of realistic data

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, meta

More

Packages that depend on ultimate_data_generator