Skip to content

Instantly share code, notes, and snippets.

View ibrahimyilmaz7's full-sized avatar
🎯
Focusing

Ibrahim Yilmaz ibrahimyilmaz7

🎯
Focusing
View GitHub Profile
@ibrahimyilmaz7
ibrahimyilmaz7 / Xcode 11 Duplicate Line or Selection.md
Last active February 22, 2022 09:07
Xcode 11 - Duplicate Selection
  1. Open directory in Finder with Cmd + Shift + G
/Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources/
  1. Open IDETextKeyBindingSet.plist with a text editor.

  2. Add this in:

@ibrahimyilmaz7
ibrahimyilmaz7 / AnimatedPlayPauseButton.swift
Created November 29, 2020 12:11
AnimatedPlayPauseButton SwiftUI
import SwiftUI
struct AnimatedPlayPauseButton: View {
@Binding var isActive: Bool
var color1: Color { Color("Red") }
var color2: Color { isActive ? Color("Red") : Color("Pink") }
var color3: Color { isActive ? Color("Red") : Color("Yellow") }