Add Feed Folder Picker

Fixes #2193:

• Containers with indentation are supported
• Small icon provider is used
• AssetCatalog updated with SF Symbol images for desktop, iPad, iPhone.
• Title page doesn’t work at the current time.
This commit is contained in:
Stuart Breckenridge
2020-07-05 09:06:53 +08:00
parent 4081aa0168
commit ad4aaf9a19
11 changed files with 40 additions and 28 deletions

View File

@@ -134,6 +134,11 @@ class AddWebFeedModel: ObservableObject {
}
}
func smallIconImage(for container: Container) -> RSImage? {
if let smallIconProvider = container as? SmallIconProvider {
return smallIconProvider.smallIcon?.image
}
return nil
}
}