This file contains hidden or 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
import Foundation | |
enum FooEnum { | |
case foo1 | |
case foo2 | |
case foo3 | |
} | |
enum BarEnum { | |
case bar1 |
This file contains hidden or 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
import SwiftUI | |
struct ContentView: View { | |
@State private var hoverLocation: CGPoint = .zero | |
@State private var isHovering = false | |
@State var toggleText = false | |
var body: some View { | |
ZStack { | |
Rectangle() |
This file contains hidden or 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 | |
// GradientCard | |
// | |
// Created by Denise Nepraunig on 26.11.23. | |
// | |
import SwiftUI | |
struct GradientLine: View { |
OlderNewer