Mercurial > public > simoleon
view Simoleon/UI/FavoritesPlaceholder.swift @ 170:f4e0c414cf6d
minor UI changes
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Thu, 23 Sep 2021 15:14:48 +0200 |
parents | e4cbb1eea394 |
children |
line wrap: on
line source
// // FavoritesPlaceholder.swift // Simoleon // // Created by Dennis Concepción Martín on 5/9/21. // import SwiftUI struct FavoritesPlaceholder: View { var body: some View { VStack { Group { Group { Image(systemName: "star") .padding(.bottom) Text("No Favorites") .padding(.bottom, 5) } .font(.system(size: 30)) Text("Your favorite currencies will appear here.") } .foregroundColor(.secondary) } } } struct FavoritesPlaceholder_Previews: PreviewProvider { static var previews: some View { FavoritesPlaceholder() } }