Created
July 17, 2020 13:07
-
-
Save amosgyamfi/b54563a8969c32b9083d683c7459387e to your computer and use it in GitHub Desktop.
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 | |
// Text Loader | |
// | |
// Created by Amos Gyamfi on 12.7.2020. | |
// | |
import SwiftUI | |
struct ContentView: View { | |
@State private var moveRightLeft = false | |
let screenFrame = Color(.systemBackground) | |
var body: some View { | |
ZStack { | |
screenFrame | |
.edgesIgnoringSafeArea(/*@START_MENU_TOKEN@*/.all/*@END_MENU_TOKEN@*/) | |
VStack(spacing: 20) { | |
ZStack { | |
Text("Loading...") // Active: Blue | |
.clipShape(Rectangle().offset(x: moveRightLeft ? -37 : 27)) // Animation 2: hide portion the width | |
.frame(width: 100, height: 6, alignment: .leading) | |
.foregroundColor(Color(.systemBlue)) | |
.offset(x: moveRightLeft ? 14 : -14) // Animation 1: Back and forth | |
.animation(Animation.easeInOut(duration: 0.8).delay(0.2).repeatForever(autoreverses: true)) | |
.onAppear { | |
moveRightLeft.toggle() | |
} | |
} | |
Divider() | |
Text("Sending photos 7 of 7") | |
}.padding(/*@START_MENU_TOKEN@*/.all/*@END_MENU_TOKEN@*/, 30).frame(width: 250, height: /*@START_MENU_TOKEN@*/100/*@END_MENU_TOKEN@*/, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/).background(Color(.systemGray6)).cornerRadius(12) | |
} | |
} | |
} | |
struct ContentView_Previews: PreviewProvider { | |
static var previews: some View { | |
ContentView() | |
.colorScheme(.dark) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment