mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-06-07 14:28:50 +00:00
Make primary action bold: (#1021)
This commit is contained in:
parent
b927c680d7
commit
e4b880dfe5
4 changed files with 6 additions and 4 deletions
|
@ -41,8 +41,10 @@ struct SettingsTabs: View {
|
||||||
.toolbar {
|
.toolbar {
|
||||||
if UIDevice.current.userInterfaceIdiom == .phone {
|
if UIDevice.current.userInterfaceIdiom == .phone {
|
||||||
ToolbarItem {
|
ToolbarItem {
|
||||||
Button("action.done") {
|
Button {
|
||||||
dismiss()
|
dismiss()
|
||||||
|
} label: {
|
||||||
|
Text("action.done").bold()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -116,7 +116,7 @@ public struct EditAccountView: View {
|
||||||
if viewModel.isSaving {
|
if viewModel.isSaving {
|
||||||
ProgressView()
|
ProgressView()
|
||||||
} else {
|
} else {
|
||||||
Text("action.save")
|
Text("action.save").bold()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,7 +60,7 @@ public struct EditRelationshipNoteView: View {
|
||||||
if viewModel.isSaving {
|
if viewModel.isSaving {
|
||||||
ProgressView()
|
ProgressView()
|
||||||
} else {
|
} else {
|
||||||
Text("action.save")
|
Text("action.save").bold()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,7 +118,7 @@ public struct StatusEditorView: View {
|
||||||
if viewModel.isPosting {
|
if viewModel.isPosting {
|
||||||
ProgressView()
|
ProgressView()
|
||||||
} else {
|
} else {
|
||||||
Text("status.action.post")
|
Text("status.action.post").bold()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.disabled(!viewModel.canPost)
|
.disabled(!viewModel.canPost)
|
||||||
|
|
Loading…
Reference in a new issue