Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
import SwiftUI | |
struct ContentView: View { | |
/// The percentage value controlling the wave animation. | |
@State private var percent: CGFloat = 60.0 | |
/// The linear gradient defining the color of the wave. | |
@State private var color = LinearGradient(colors: [.cyan, .cyan.opacity(0.5)], startPoint: .top, endPoint: .bottom) | |
var body: some View { | |
VStack { |
// | |
// ContentView.swift | |
// Animating Cirlce | |
// | |
// Created by Moussa on 23/1/2024. | |
// | |
import SwiftUI | |
Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
// | |
// DrinkyFlow.swift | |
// CompleteNavigationSwiftUI | |
// | |
// Created by Moussa on 25/6/2023. | |
// | |
import Foundation | |
import SwiftUI |
// | |
// DrinkyViewFactory.swift | |
// CompleteNavigationSwiftUI | |
// | |
// Created by Moussa on 25/6/2023. | |
// | |
import Foundation | |
import SwiftUI |
// | |
// SafeAreaTabBar+Extension.swift | |
// SafeAreTabBar | |
// | |
// Created by Moussa on 11/6/2023. | |
// | |
import SwiftUI | |
extension UITabBarController { |
// Created by Moussa on 20/5/2023. | |
import SwiftUI | |
struct ContentView: View { | |
var body: some View { | |
VStack { | |
Image("cappucino") | |
.resizable() |
// Created by Moussa on 20/5/2023. | |
import SwiftUI | |
struct DraggableModifier: ViewModifier { | |
@State private var offset = CGSize.zero | |
func body(content: Content) -> some View { | |
content |
// Created by Moussa on 20/5/2023. | |
import SwiftUI | |
struct ContentView: View { | |
@State private var offset = CGSize.zero | |
var body: some View { |