-
In previous discussion we have created a card widget now I want to add slice of card widgets to a Frame ? And on every new search slice will get updated also. |
Beta Was this translation helpful? Give feedback.
Answered by
kkoreilly
Oct 7, 2024
Replies: 1 comment 5 replies
-
is this correct way :
|
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The issue is that you need to re-fetch
vData
in each inner closure function inside ofAddAt
, since it is still the same function from before with a stale closure variable as long as the index is the same. So if you do something like this in yourMaker
, you shouldn't need the manualUpdate
orDeleteChildren
between clearing and adding: