Created
May 4, 2021 15:28
-
-
Save Audhil/6e98dbdcda3ee216349637f413e7929c to your computer and use it in GitHub Desktop.
hands dirty on Swift-UI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ContentView.swift | |
// SwiftUI-Appu | |
// | |
// Created by Mohammed Audhil S on 18/04/21. | |
// | |
import SwiftUI | |
struct ContentView: View { | |
@State | |
private var isNight = false | |
var body: some View { | |
ZStack { | |
BackGroundView(isNightBool: $isNight) | |
VStack{ | |
CityTextView(title: "Cupertino, India") | |
CurrentWeatherStatusView( | |
imageName: isNight ? "cloud.moon.fill" : "cloud.sun.fill", | |
temperature: "76°") | |
HStack(spacing: 20){ | |
WeatherDayView(dayOfWeek: "TUE", | |
imageName: "cloud.sun.fill", | |
temperature: 74) | |
WeatherDayView(dayOfWeek: "WED", | |
imageName: "cloud.moon.bolt.fill", | |
temperature: 73) | |
WeatherDayView(dayOfWeek: "THU", | |
imageName: "wind.snow", | |
temperature: 70) | |
WeatherDayView(dayOfWeek: "FRI", | |
imageName: "cloud.moon.rain.fill", | |
temperature: 78) | |
WeatherDayView(dayOfWeek: "SAT", | |
imageName: "cloud.sleet.fill", | |
temperature: 64) | |
} | |
Spacer() | |
Button{ | |
isNight.toggle() | |
} label:{ | |
WeatherButton(title: "Change Day Time", bgColor: Color.white, fgColor: .blue) | |
} | |
Spacer() | |
} | |
} | |
} | |
} | |
struct ContentView_Previews: PreviewProvider { | |
static var previews: some View { | |
ContentView() | |
} | |
} | |
struct WeatherDayView: View { | |
var dayOfWeek: String | |
var imageName: String | |
var temperature: Int | |
var body: some View { | |
VStack { | |
Text(dayOfWeek) | |
.font(.system(size: 16, weight: .medium, design: .default)) | |
.foregroundColor(.white) | |
VStack(spacing:10){ | |
Image(systemName: imageName) | |
.renderingMode(.original) | |
.resizable() | |
.aspectRatio(contentMode: .fit) | |
.frame(width: 40, height: 40) | |
Text("\(temperature)°") | |
.font(.system(size: 28, weight: .medium)) | |
.foregroundColor(.white) | |
} | |
} | |
} | |
} | |
struct BackGroundView: View { | |
@Binding var isNightBool: Bool | |
var body: some View { | |
LinearGradient( | |
gradient: Gradient(colors:[isNightBool ? .black: .blue, | |
isNightBool ? .gray: Color("lightBlue")]), | |
startPoint: .topLeading, | |
endPoint: .bottomTrailing | |
) | |
.edgesIgnoringSafeArea(.all) | |
} | |
} | |
struct CityTextView: View { | |
var title:String | |
var body: some View { | |
Text(title) | |
.font(.system(size: 32, weight: .medium, design: .default)) | |
.foregroundColor(.white) | |
.padding() | |
} | |
} | |
struct CurrentWeatherStatusView: View { | |
var imageName: String | |
var temperature: String | |
var body: some View { | |
VStack(spacing:10){ | |
Image(systemName: imageName) | |
.renderingMode(.original) | |
.resizable() | |
.aspectRatio(contentMode: .fit) | |
.frame(width: 180, height: 180) | |
Text(temperature) | |
.font(.system(size: 70, weight: .medium)) | |
.foregroundColor(.white) | |
} | |
.padding(.bottom, 40) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment