Skip to content

Instantly share code, notes, and snippets.

@amosgyamfi
Created July 17, 2020 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amosgyamfi/b54563a8969c32b9083d683c7459387e to your computer and use it in GitHub Desktop.
Save amosgyamfi/b54563a8969c32b9083d683c7459387e to your computer and use it in GitHub Desktop.
//
// 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