Last updated:
0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.