Mercurial > public > simoleon
view Simoleon/Helpers/FavoritesPlaceholder.swift @ 187:13d5a8deb6c2
add AboutView and FavoritesView
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Thu, 23 Dec 2021 16:12:22 +0100 |
parents | |
children |
line wrap: on
line source
// // FavoritesPlaceholder.swift // Simoleon // // Created by Dennis Concepción Martín on 23/12/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() } }