RefreshUI
RefreshUI copied to clipboard
Multiple List Error
If there are multiple lists in the same VStack, Rotoscope can't find table view with tag.
Example:
VStack {
List {
}.onPull()
List {
}.onPull()
}
Have you tried using the token parameter? if you look at the source code the default is token: Token(id: 1) so using it as you show in your code results in all having the same id...
Have you tried using the token parameter? if you look at the source code the default is token: Token(id: 1) so using it as you show in your code results in all having the same id...
hi ChrDel,
Yes, I have used the token parameter. Please feel free to get the attach files.
