Open ooyamatakehisa opened 1 year ago
Apple official doc says we should use @State with value type variables and @StateObject with reference type variables, but we are using @State with Timer or lists which are reference type. That might cause the issues in #226 .
@State
@StateObject
Timer
Apple official doc says we should use
@State
with value type variables and@StateObject
with reference type variables, but we are using@State
withTimer
or lists which are reference type. That might cause the issues in #226 .