Various improvements

This commit is contained in:
Ilya Laktyushin
2022-05-28 14:58:27 +04:00
parent bdd7d0d9a2
commit 9740eff548
42 changed files with 3160 additions and 476 deletions

View File

@@ -99,7 +99,7 @@ public final class _ConcreteChildComponent<ComponentType: Component>: _AnyChildC
view = current.view as! ComponentType.View
} else {
view = component.makeView()
transition = .immediate
transition = transition.withAnimation(.none)
}
let context = view.context(component: component)
@@ -342,7 +342,7 @@ public final class _EnvironmentChildComponentFromMap<EnvironmentType>: _AnyChild
view = current.view
} else {
view = component._makeView()
transition = .immediate
transition = transition.withAnimation(.none)
}
let viewContext = view.context(component: component)