Skip to content

Commit fa93b15

Browse files
authored
Поправил иконки с плюсом (#179)
После обновления дизайн-системы потерялись некоторые кружочки - вернул их
1 parent d888d07 commit fa93b15

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

SwiftUI-WorkoutApp/Screens/Events/List/EventsListView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ private extension EventsListView {
134134
}
135135
} label: {
136136
Icons.Regular.plus.view
137+
.symbolVariant(.circle)
137138
}
138139
.disabled(!network.isConnected)
139140
.sheet(isPresented: $showEventCreationSheet) {

SwiftUI-WorkoutApp/Screens/Messages/DialogListView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ private extension DialogListView {
6969
}
7070
} label: {
7171
Icons.Regular.plus.view
72+
.symbolVariant(.circle)
7273
}
7374
.opacity(hasFriends || !dialogs.isEmpty ? 1 : 0)
7475
.disabled(!network.isConnected)

SwiftUI-WorkoutApp/Screens/Profile/Journals/EntriesList/JournalEntriesList.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ private extension JournalEntriesList {
113113
if canCreateEntry {
114114
Button { showCreateEntrySheet = true } label: {
115115
Icons.Regular.plus.view
116+
.symbolVariant(.circle)
116117
}
117118
.disabled(isLoading || !network.isConnected)
118119
.sheet(isPresented: $showCreateEntrySheet) {

SwiftUI-WorkoutApp/Screens/Profile/Journals/JournalsList/JournalsListView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ private extension JournalsListView {
7070
var addJournalButton: some View {
7171
Button(action: showNewJournalSheet) {
7272
Icons.Regular.plus.view
73+
.symbolVariant(.circle)
7374
}
7475
.opacity(showAddJournalButton ? 1 : 0)
7576
.disabled(!network.isConnected)

SwiftUI-WorkoutApp/Screens/SportsGrounds/Map/SportsGroundsMapView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ private extension SportsGroundsMapView {
266266
showGroundCreationSheet.toggle()
267267
} label: {
268268
Icons.Regular.plus.view
269+
.symbolVariant(.circle)
269270
}
270271
.opacity(isLoading ? 0 : 1)
271272
.disabled(!network.isConnected || !viewModel.locationErrorMessage.isEmpty)

0 commit comments

Comments
 (0)