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 | |
| // AppleMusicLyricsPlayer | |
| // | |
| // Created by Magesh Sridhar on 2/5/23. | |
| // | |
| import SwiftUI | |
| import AVKit |
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
| // | |
| // FluidMusicButons.swift | |
| // EnterSwiftUIAnimations | |
| import SwiftUI | |
| struct FluidMusicButons: View { | |
| @State private var isPlaying = false | |
| @State private var transparency: Double = 0.0 | |
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 | |
| // GradientEffect | |
| // | |
| // Created by Christian Privitelli on 18/7/20. | |
| // | |
| import SwiftUI | |
| struct ContentView: View { | |
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 Theme: Hashable { | |
| var colorPrimary: Color = Color.primary | |
| var name: String? = nil | |
| var publicName: String = "System" | |
| } | |
| var themes: [Theme] = [ | |
| Theme(colorPrimary: Color.primary, name: nil, publicName: "System"), |