169 похожих чатов

Guys I have issue with null safety dart FutureBuilder(

future: FundCategories?.getCategories(),
builder: (context, snapshot) {
if (snapshot.hasData) {
return GridView.builder(
itemCount: 7,
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 2,
),
itemBuilder: (context, index) {
return Card(
child: Stack(
children: [
Image.asset(snapshot.data[index]['image']),
],
),
);
},
);
}
return Center(
child: CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation(LightThemes.mainTheme),
),
);
},
),
Which I got the exception `The method '[]' can't be unconditionally invoked because the receiver can be 'null'.
Try making the call conditional (using '?.') or adding a null check to the target ('!').dartunchecked_use_of_nullable_value`

I tried to Image.asset(snapshot.data?[index]['image']) and Image.asset(snapshot.data![index]['image']) but it dont work. any idea?

1 ответов

17 просмотров
非主流-Me Автор вопроса

I already found the issue . the datatype wasn't declared. update: late final Future<List<Map<String, Object>>> categories = FundCategories?.getCategories(); FutureBuilder<dynamic>( future: categories, builder: (context, snapshot) { if (snapshot.hasData) { return GridView.builder( itemCount: snapshot.data!.length, gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( crossAxisCount: 2, ), itemBuilder: (context, index) { return Card( child: Stack( children: [ Image.asset(snapshot.data![index]!['image']!), Text(snapshot.data![index]!['category']!) ], ), ); }, ); } return Center( child: CircularProgressIndicator( valueColor: AlwaysStoppedAnimation(LightThemes.mainTheme), ), ); }, ), and it feels like kotlin.

Похожие вопросы

Обсуждают сегодня

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
14
Добрый день! Скажите пожалуйста, а какие программы вы бы рекомендовали написать для того, чтобы научиться управлять памятью? Можно написать динамический массив, можно связный ...
Филипп
7
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Ребят в СИ можно реализовать ООП?
Николай
33
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Карта сайта