mod: dynamic panel (#738)

This commit is contained in:
My-Responsitories
2025-04-23 16:01:09 +08:00
committed by GitHub
parent 7bb0307e6a
commit e0fe16fd14
6 changed files with 286 additions and 276 deletions

View File

@@ -111,7 +111,7 @@ class _SearchDynamicState extends State<SearchDynamic>
? LastChildLayoutType.foot
: LastChildLayoutType.none;
},
children: (loadingState.response as List)
children: loadingState.response!
.map((item) => DynamicPanel(item: item))
.toList(),
)