This PR contains the work done to implement the filtering of the items shown in the `FeedListViewController` view controller by star rating. Reviewed-on: #11 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
28 lines
818 B
Swift
28 lines
818 B
Swift
//
|
|
// String+Icons.swift
|
|
// ReviewsUIKit
|
|
//
|
|
// Created by Javier Cicchelli on 20/03/2024.
|
|
// Copyright © 2024 Röck+Cöde VoF. All rights reserved.
|
|
//
|
|
|
|
public extension String {
|
|
enum Icon {
|
|
|
|
// MARK: Constants
|
|
public static let info = "info.circle.fill"
|
|
public static let person = "person.crop.circle.fill"
|
|
public static let starAll = "a.circle"
|
|
public static let star1 = "1.circle"
|
|
public static let star2 = "2.circle"
|
|
public static let star3 = "3.circle"
|
|
public static let star4 = "4.circle"
|
|
public static let star5 = "5.circle"
|
|
|
|
static let filter = "camera.filters"
|
|
static let questionMark = "questionmark.circle.fill"
|
|
static let star = "star"
|
|
static let starFill = "star.fill"
|
|
}
|
|
}
|