Disable TabView animations

This commit is contained in:
Thomas Ricouard 2024-07-18 18:56:12 +02:00
parent efab56d5e5
commit 09104ee903

View file

@ -73,6 +73,9 @@ struct AppView: View {
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.30), for: .tabBar)
}
}
.introspect(.tabView, on: .iOS(.v17, .v18)) { (_: UITabBarController) in
UITabBar.setAnimationsEnabled(false)
}
.id(appAccountsManager.currentClient.id)
.withSheetDestinations(sheetDestinations: $appRouterPath.presentedSheet)
}