view Simoleon/Helpers/FavoritesPlaceholder.swift @ 195:7b009649a063 default tip

Move to mercurial
author Dennis C. M. <dennis@denniscm.com>
date Tue, 03 Jun 2025 14:43:48 +0100
parents 13d5a8deb6c2
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()
    }
}