Install Homebrew
Install a few things with homebrew:
Notice that some packages give you information at the end, read it carefully. To recall that info use brew info
like this: $ brew info postgresql
$ brew install python --universal
// | |
// ContentView.swift | |
// AppleMusicLyricsPlayer | |
// | |
// Created by Magesh Sridhar on 2/5/23. | |
// | |
import SwiftUI | |
import AVKit |
import SwiftUI | |
struct OverlayView<OverlayContent: View>: ViewModifier { | |
@Binding var isPresented: Bool | |
var modalContent: OverlayContent | |
var transition: AnyTransition = .move(edge: .bottom) | |
var animation: Animation = .easeInOut | |
func body(content: Content) -> some View { |
Install Homebrew
Install a few things with homebrew:
Notice that some packages give you information at the end, read it carefully. To recall that info use brew info
like this: $ brew info postgresql
$ brew install python --universal