<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Ui on dev.endevour</title><link>https://devendevour.iankulin.com/tags/ui/</link><description>Recent content in Ui on dev.endevour</description><generator>Hugo</generator><language>en-AU</language><lastBuildDate>Thu, 21 Jul 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://devendevour.iankulin.com/tags/ui/index.xml" rel="self" type="application/rss+xml"/><item><title>SF Symbols</title><link>https://devendevour.iankulin.com/sf-symbols/</link><pubDate>Thu, 21 Jul 2022 00:00:00 +0000</pubDate><guid>https://devendevour.iankulin.com/sf-symbols/</guid><description>&lt;p&gt;A couple of times in the App Development seminar I went to, we used system symbols in the place of images, and in his tutorial on Swift UI Basics, Sean Allen spent a few minutes talking about where they come from and how to choose them.&lt;/p&gt;
&lt;p&gt;First, here&amp;rsquo;s how they look in code - this is from the default Hello World app.&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;struct ContentView: View {
 var body: some View {
 VStack {
 Image(systemName: &amp;#34;globe&amp;#34;)
 .imageScale(.large)
 .foregroundColor(.accentColor)
 Text(&amp;#34;Hello world&amp;#34;)
 }
 }
}
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src="https://devendevour.iankulin.com/images/screen-shot-2022-07-17-at-7.26.23-am.png" alt="" class="img-responsive"&gt; &lt;/p&gt;</description></item></channel></rss>