iOS/Sources/Shared/Extensions/Image+SharedAssets.swift
Bruno Pantaleão Gonçalves 99012625cb
Fix logo missing in "About screen" (#2755)
<!-- Thank you for submitting a Pull Request and helping to improve Home
Assistant. Please complete the following sections to help the processing
and review of your changes. Please do not delete anything from this
template. -->

## Summary
<!-- Provide a brief summary of the changes you have made and most
importantly what they aim to achieve -->

## Screenshots
<!-- If this is a user-facing change not in the frontend, please include
screenshots in light and dark mode. -->
![Simulator Screenshot - iPhone 15 Pro - 2024-05-01 at 13 34
49](https://github.com/home-assistant/iOS/assets/5808343/57b27483-02c8-48a0-bb05-31ec2b4659fa)

## Link to pull request in Documentation repository
<!-- Pull requests that add, change or remove functionality must have a
corresponding pull request in the Companion App Documentation repository
(https://github.com/home-assistant/companion.home-assistant). Please add
the number of this pull request after the "#" -->
Documentation: home-assistant/companion.home-assistant#

## Any other notes
<!-- If there is any other information of note, like if this Pull
Request is part of a bigger change, please include it here. -->
2024-05-06 09:48:46 +02:00

10 lines
160 B
Swift

import Foundation
import SwiftUI
import UIKit
public extension Image {
init(imageAsset: ImageAsset) {
self.init(uiImage: imageAsset.image)
}
}