This PR contains the work done to implement the `FeedItemViewController` view controller, that shows in details a selected review from the `FeedListViewController` view controller. Reviewed-on: #10 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
19 lines
426 B
Swift
19 lines
426 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
|
|
static let questionMark = "questionmark.circle.fill"
|
|
|
|
public static let info = "info.circle.fill"
|
|
public static let person = "person.crop.circle.fill"
|
|
}
|
|
}
|