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
// | |
// ScrollViewController.swift | |
// Test | |
// | |
// Created by Jayesh Kawli on 19/04/2023. | |
// | |
// custom scroll view stack view in Swift | |
import Foundation |
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
function parse_git_branch() { | |
git branch 2> /dev/null | sed -n -e 's/^\* \(.*\)/[\1]/p' | |
} | |
COLOR_DEF=$'\e[0m' | |
COLOR_USR=$'\e[38;5;243m' | |
COLOR_DIR=$'\e[38;5;197m' | |
COLOR_GIT=$'\e[38;5;39m' | |
setopt PROMPT_SUBST |
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
// | |
// CustomAttributedStringTextView.swift | |
// SwiftUIBlogPosts | |
// | |
// Created by Jayesh Kawli on 8/31/22. | |
// | |
import SwiftUI | |
struct CustomAttributedStringTextViewModel { |
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
// Searchable.swift | |
import SwiftUI | |
struct Searchable: View { | |
@State var searchText: String = "" | |
private let suggestions = ["Milan", "Rome", "Paris", "Iceland", "Greenland", "Florida"] |
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 Place: Identifiable { | |
let id: String | |
let name: String | |
let imageName: String | |
var isFavorited: Bool = false | |
} |
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
class ViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
findMatches() | |
findMatchingElements() | |
replaceMatchingElements() | |
} | |
func findMatches() { |
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 | |
extension VerticalAlignment { | |
// A custom vertical alignment to custom align views vertically | |
private struct TopSectionTitlesAlignment: AlignmentID { | |
static func defaultValue(in context: ViewDimensions) -> CGFloat { | |
// Default to center alignment if no guides are set | |
context[HorizontalAlignment.center] | |
} |
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 ShadowComponent: View { | |
enum Direction { | |
case upward | |
case downward | |
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 ShadowView: View { | |
let xOffset: CGFloat | |
let yOffset: CGFloat | |
var body: some View { | |
Text("SwiftUI is Awesome").padding().background( | |
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
struct Employee: Codable { | |
let name: String | |
let ssn: String | |
} | |
private let employeeDataKey = "employee" | |
func encodeObject() { | |
do { | |
let employeeData = try JSONEncoder().encode(Employee(name: "abc def", ssn: "123456789")) |