Add Web Feed Colours
Icons in the picker now use accent colour.
This commit is contained in:
parent
f5855f032d
commit
9830a977a0
|
@ -134,14 +134,14 @@ struct AddWebFeedView: View {
|
|||
if viewModel.containers[index] is Folder {
|
||||
HStack(alignment: .top) {
|
||||
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
|
||||
Image(rsImage: image)
|
||||
Image(rsImage: image).foregroundColor(.accentColor)
|
||||
}
|
||||
Text("\(containerName)").tag(index)
|
||||
}.padding(.leading, 16)
|
||||
} else {
|
||||
HStack(alignment: .top) {
|
||||
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
|
||||
Image(rsImage: image)
|
||||
Image(rsImage: image).foregroundColor(.accentColor)
|
||||
}
|
||||
Text(containerName).tag(index)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue