python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Using List of HashMap<String, dynamic> to populate ListView Builder Flutter
I am having a json response that looks like this below
[
{
"email": "kamchatka@mail.com",
"about": "Lorem ipsum dolor sit amet consectetur adipisic...
Emmanuel Njorodongo
Votes: 0
Answers: 1
Get data from async function inside ListView (without FutureBuilder)
My app's home page uses a ListView.builder to create a feed of posts. Each post has to show the owner's profile picture as well as other data. In the ListView.builder I call a function to get the prof...
Globe
Votes: 0
Answers: 2
Text widget doesn't appear in dialog after user Future.delayed in Flutter
I have a dialog that appears after user click on send button . When dialog appears , I want to show a text after 5 seconds . I use Future.delayed but the text doesn't appear at all . It appears only w...
Ahmed Elsayed
Votes: 0
Answers: 3
The argument type 'Future<List<User>>' can't be assigned to the parameter type 'Future<void> Function()' in onRefresh when using RefreshIndicator
I am having a Future that is fetching and populating users below
Future<List<User>> _fetchUsersListUsingLoop() async {
try {
var response = await http.get(
Uri.p...
Emmanuel Njorodongo
Votes: 0
Answers: 2