naija_uni

Last updated:

0 purchases

naija_uni Image
naija_uni Images
Add to Cart

Description:

naija uni

naija_uni #
Returns a list of universities in Nigeria and can be used anywhere.
Drop Down #
it can be used in a dropdown to prompt easy selection
DropdownButton(
items: NaijaUni.allUniversities.map((String value) {
return DropdownMenuItem<String>(
value: value,
child: Text(value),
);
}).toList(),
onChanged: (_) {},
),
copied to clipboard
ListView #
can be used in a list view to display all universities
ListView.builder(
itemCount: NaijaUni.allUniversities.length,
itemBuilder: (context, index) {
String university = NaijaUni.allUniversities[index];
return Container(
child: Text(university),
);
}),
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.