回答編集履歴
1
バグがあった
answer
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
itemCount: testJsonList[index]['hoge'].length,
|
7
7
|
itemBuilder: (int hogeindex) {
|
8
8
|
return ItemTags(
|
9
|
-
index:
|
9
|
+
index: hogeindex,
|
10
10
|
title: testJsonList[index]['hoge'][hogeindex],
|
11
11
|
);
|
12
12
|
},
|
@@ -89,7 +89,7 @@
|
|
89
89
|
itemCount: testJsonList[index]['hoge'].length,
|
90
90
|
itemBuilder: (int hogeindex) {
|
91
91
|
return ItemTags(
|
92
|
-
index:
|
92
|
+
index: hogeindex,
|
93
93
|
title: testJsonList[index]['hoge'][hogeindex],
|
94
94
|
);
|
95
95
|
},
|