Skip to content

Commit

Permalink
Fix an animation glitch when signing in on iOS 16. (#2098)
Browse files Browse the repository at this point in the history
  • Loading branch information
pixlwave authored Nov 17, 2023
1 parent 93c6aa6 commit 2274262
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ElementX/Sources/Screens/HomeScreen/View/HomeScreen.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ struct HomeScreen: View {
ForEach(context.viewState.visibleRooms) { room in
HomeScreenRoomCell(room: room, context: context, isSelected: false)
.redacted(reason: .placeholder)
.shimmer() // Putting this directly on the LazyVStack creates an accordion animation on iOS 16.
}
}
.shimmer()
.disabled(true)
case .empty:
HomeScreenEmptyStateLayout(minHeight: geometry.size.height) {
Expand Down
1 change: 1 addition & 0 deletions changelog.d/1807.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix an animation glitch when signing in on iOS 16.

0 comments on commit 2274262

Please sign in to comment.