34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Swift
		
	
	
	
	
	
import SwiftUI
 | 
						|
 | 
						|
struct ConceptTab: View {
 | 
						|
    var body: some View {
 | 
						|
        ScrollView {
 | 
						|
            VStack(spacing: 24) {
 | 
						|
                Image(systemName: "gamecontroller.fill")
 | 
						|
                    .resizable()
 | 
						|
                    .scaledToFit()
 | 
						|
                    .frame(width: 96, height: 96)
 | 
						|
                    .foregroundColor(.accentColor)
 | 
						|
 | 
						|
                Text(NSLocalizedString("Кликер в разработке", comment: "Concept tab placeholder title"))
 | 
						|
                    .font(.title2)
 | 
						|
                    .fontWeight(.semibold)
 | 
						|
 | 
						|
                Text(NSLocalizedString("Скоро появится мини-игра, где можно заработать очки для кастомизации профиля. Следите за обновлениями!", comment: "Concept tab placeholder description"))
 | 
						|
                    .font(.body)
 | 
						|
                    .multilineTextAlignment(.center)
 | 
						|
                    .foregroundColor(.secondary)
 | 
						|
                    .padding(.horizontal)
 | 
						|
            }
 | 
						|
            .padding(.vertical, 48)
 | 
						|
            .frame(maxWidth: .infinity)
 | 
						|
        }
 | 
						|
        .background(Color(UIColor.systemGroupedBackground))
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
#Preview {
 | 
						|
    ConceptTab()
 | 
						|
        .environmentObject(ThemeManager())
 | 
						|
}
 |