如何在 Flutter 上向 List<Map<String, String>> 输入第三个字符串?

Posted

技术标签:

【中文标题】如何在 Flutter 上向 List<Map<String, String>> 输入第三个字符串?【英文标题】:How could I enter third string to List<Map<String, String>> on Flutter? 【发布时间】:2021-06-11 22:56:18 【问题描述】:
  List<Map<String, String>> splashData = [
        "text": "EGZERSİZİNİ SEÇ", "image": "assets/logo/Splash1.png",
        "text": "TELEFONUNU SABİTLE", "image": "assets/logo/Splash2.png",
       "text": "UYARI", "image": "assets/logo/Splash3.png"
    ];

我正在尝试将 3 个字符串添加到 Flutter 中的列表。我怎样才能将第三个字符串添加到我的列表中?

我想做的例子

   List<Map<String, String, String> splashData :[
           "text": "EGZERSİZİNİ SEÇ", "image": "assets/logo/Splash1.png","text1": "EGZERSİZİNİ SEÇ",
           "text": "TELEFONUNU SABİTLE", "image": "assets/logo/Splash2.png","text1":"EGZERSİZİNİ SEÇ",
          "text": "UYARI", "image": "assets/logo/Splash3.png","text1": "EGZERSİZİNİ SEÇ"];

这个可以加吗?

感谢您的回复。

【问题讨论】:

【参考方案1】:

您可以添加一个具有类似值的键。

for(final Map<String, String> data in splashData)
  data['text1'] = 'EGZERSİZİNİ SEÇ';

【讨论】:

【参考方案2】:
splashData.forEach( (data) => data['text1'] = "EGZERSİZİNİ SEÇ"));

【讨论】:

请不要只发布代码作为答案,还要解释您的代码的作用以及它如何解决问题的问题。带有解释的答案通常更有帮助,质量更高,更有可能吸引投票。

以上是关于如何在 Flutter 上向 List<Map<String, String>> 输入第三个字符串?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Flutter 中获取 Future<List> 项的某个数据索引?

Flutter - 如何更新 List<Map>

如何在 Flutter 中对 DataTable 小部件上的 Future<List> 数据类型进行排序?

Flutter : List<Document>,如何根据标题去除重复文档

Flutter:我如何从 List<String> 中的 firestore 获取数据?

Flutter - 如何将 List<Uint8List> 放入共享首选项中?