iPad UI improvements

This commit is contained in:
Ilya Laktyushin
2020-04-03 18:24:54 +04:00
parent 03e68b6415
commit 91f02f42fe
24 changed files with 364 additions and 74 deletions

View File

@@ -50,15 +50,15 @@ final class ChatSearchInputPanelNode: ChatInputPanelNode {
}
init(theme: PresentationTheme) {
self.upButton = HighlightableButtonNode()
self.upButton = HighlightableButtonNode(pointerStyle: .default)
self.upButton.isEnabled = false
self.downButton = HighlightableButtonNode()
self.downButton = HighlightableButtonNode(pointerStyle: .default)
self.downButton.isEnabled = false
self.calendarButton = HighlightableButtonNode()
self.membersButton = HighlightableButtonNode()
self.membersButton = HighlightableButtonNode(pointerStyle: .default)
self.measureResultsLabel = TextNode()
self.measureResultsLabel.displaysAsynchronously = false
self.resultsButton = HighlightableButtonNode()
self.resultsButton = HighlightableButtonNode(pointerStyle: .default)
self.activityIndicator = ActivityIndicator(type: .navigationAccent(theme.rootController.navigationBar.buttonColor))
self.activityIndicator.isHidden = true