Skip to content

Instantly share code, notes, and snippets.

View uhooi's full-sized avatar
๐ŸŸข

uhooi

๐ŸŸข
View GitHub Profile
@Koshimizu-Takehito
Koshimizu-Takehito / ContentView.swift
Created March 9, 2025 09:24
่กจ็คบไธญใฎใƒ”ใ‚ฏใ‚ปใƒซใƒ‡ใƒผใ‚ฟใ‹ใ‚‰ใƒœใ‚ฟใƒณใฎ่‰ฒใ‚’ๅˆ‡ใ‚Šๆ›ฟใˆใ‚‹
import SwiftUI
struct ContentView: View {
@State private var image = UIImage()
@State private var buttonRect = CGRect()
@State private var isBrightBackground = false
@State private var viewID = UUID()
var body: some View {
NavigationStack {
@bannzai
bannzai / CarouselView.swift
Last active October 21, 2024 08:34
CarouselView.swift
import SwiftUI
struct Item: Identifiable {
let id = UUID()
var text = ""
var color: Color = .clear
}
struct CarouselView: View {
var items: [Item] = [
import SwiftUI
struct ContentView: View {
@State private var initOffset: CGFloat = .zero
@State private var offset: CGFloat = .zero
@State private var closeButtonYPosition: CGFloat = .zero
let headerHeight: CGFloat = 300
var body: some View {
@kntkymt
kntkymt / ViewBuilderTest.swift
Last active October 27, 2023 06:57
ViewBuilderใจifใ‚ใ‚Œใ“ใ‚Œ
import SwiftUI
struct CounterView: View {
@State var counter = 0
var body: some View {
Button {
counter += 1
} label: {
Text(counter.description)
@niw
niw / main.swift
Created July 12, 2023 04:15
Tiny SExpr Interpretor
import Foundation
extension String: Error {}
// MARK: - Evaluation
enum Atom {
case symbol(String)
case number(Double)
}
@YusukeHosonuma
YusukeHosonuma / goodbye_swiftgen_localize.rb
Created May 23, 2023 01:30
Goodbye Localizable.strings with SwiftGen - SwiftGen ใซใ‚ˆใ‚‹ใƒญใƒผใ‚ซใƒฉใ‚คใ‚บใ‚’ๅ‰ฅใŒใ™ใ‚นใ‚ฏใƒชใƒ—ใƒˆ
# -----------------------------------------------------------------------------
# SwiftGen ใซใ‚ˆใ‚‹ใƒญใƒผใ‚ซใƒฉใ‚คใ‚บใ‚’ๅ‰ฅใŒใ™ใ‚นใ‚ฏใƒชใƒ—ใƒˆใ€‚
# -----------------------------------------------------------------------------
class String
# ใ‚ทใƒณใƒœใƒซๅค‰ๆ›
def symbol
# e.g.
# - OK โ†’ Ok
# - FAQ โ†’ Faq
if vim.api.orig == nil then
vim.api.orig = {}
for name, func in pairs(vim.api) do
vim.api.orig[name] = func
end
local default_win_config = {
border = "single",
}
@d-date
d-date / BundleCurrent.swift
Created April 22, 2023 09:10
Workaround for previewing SwiftPM resources
// Workaround for Bundle resource when running on Xcode previews
// https://forums.swift.org/t/xcode-previews-swiftpm-resources-xcpreviewagent-crashed/51680/10
// https://developer.apple.com/forums/thread/664295?answerId=673644022#673644022
// https://gist.github.com/ctreffs/ad9d23e08d586cf75e4d1c3bb1b1061f
import class Foundation.Bundle
import class Foundation.ProcessInfo
private class BundleFinder {}
@treastrain
treastrain / FormatStyle.md
Created March 26, 2023 17:37
Swift Foundation's `FormatStyle`

in Swift, use formatted methods directly on the types you want to format, optionally using FormatStyle and its subtypes to customize formatter output. This approach supports dates, integers, floating-point numbers, measurements, sequences, and person name components. Foundation caches identically-configured formatter instances internally, allowing you to focus on your appโ€™s formatting needs.

Data Formatting | Apple Developer Documentation https://developer.apple.com/documentation/foundation/data_formatting

Numbers and Currency

@tamaclaw
tamaclaw / ็™ปๅฃ‡่ณ‡ๆ–™ใƒใ‚งใƒƒใ‚ฏใƒชใ‚นใƒˆ.md
Created December 23, 2022 03:01
็™ปๅฃ‡่ณ‡ๆ–™ใ‚’ใคใใ‚‹้š›ใซใ€่žใๆ‰‹ใฎๆบ€่ถณๅบฆใ‚’ใ‚ใ’ใ‚‹ใŸใ‚ใฎๆง‹ๆˆใฎ็ต„ใฟๆ–นใฎๅทฅๅคซใชใฉใ‚’ใพใจใ‚ใŸใƒใ‚งใƒƒใ‚ฏใƒชใ‚นใƒˆใงใ™ใ€‚

็™ปๅฃ‡่ณ‡ๆ–™ใƒใ‚งใƒƒใ‚ฏใƒชใ‚นใƒˆ

ใ“ใกใ‚‰ใฏ็™ปๅฃ‡่ณ‡ๆ–™ใ‚’ใฒใจใจใŠใ‚Šไฝœๆˆใ—ใŸๅพŒใซ่ฆ‹ใฆใ„ใŸใ ใใŸใ„่ณ‡ๆ–™ใงใ™ใ€‚

ใ€Œ็™ปๅฃ‡่ฆ‹ใŸใ‘ใฉใ€ใ‚ใ‹ใ‚Šใฅใ‚‰ใใฆใ€ใ‚ˆใๅˆ†ใ‹ใ‚‰ใชใ‹ใฃใŸใ€ใ‚’ๅฐ‘ใ—ใงใ‚‚ๆธ›ใ‚‰ใ—ใ€็™ปๅฃ‡่€…ใฎใ“ใ ใ‚ใ‚Šใ‚’ๅ‚ๅŠ ่€…ใฎใฟใชใ•ใพใซไผใˆใ‚„ใ™ใใ™ใ‚‹ใŸใ‚ใ€ใ“ใกใ‚‰ใฎใƒใ‚งใƒƒใ‚ฏใƒชใ‚นใƒˆใ‚’ใ”็ขบ่ชใใ ใ•ใ„ใ€‚

็™ปๅฃ‡่ณ‡ๆ–™ใฎ Bad Case

ใพใšใฏใ€Œใ‚ใ‹ใ‚Šใฅใ‚‰ใ•ใ€ใ‚’ใชใ‚‹ในใๆด—ใ„ๅ‡บใ—ใฆๅฏพๅฟœใ—ใ€ ่žใๆ‰‹ใซใจใฃใฆใ€Œใ‚ใ‹ใ‚Šใฅใ‚‰ใ„ใ€ใ‚ปใƒƒใ‚ทใƒงใƒณใงใฏ็„กใ„ ใ€ใจใ„ใ†ใ“ใจใ‚’ๆœ€ไฝŽ้™็›ฎๆŒ‡ใ—ใฆใ‚‚ใ‚‰ใˆใ‚‹ใจๅฌ‰ใ—ใ„ใงใ™ใ€‚

ใƒฌใƒ“ใƒฅใƒผใ‚ขใƒผใฎ็š†ใ•ใ‚“ใ‚‚ใ€Œใ‚ใ‹ใ‚Šใฅใ‚‰ใ•ใ€ใฎๅฏพๅฟœใ‚’ใ™ใ‚‹ใ‚ตใƒใƒผใƒˆใ‚’ไธญๅฟƒใซใŠ้ก˜ใ„ใ—ใพใ™ใ€‚