Skip to content

Instantly share code, notes, and snippets.

View aaronlab's full-sized avatar
🛫

Aaron Lee aaronlab

🛫
  • Witi Corp.
  • Anywhere
  • 07:40 (UTC +09:00)
View GitHub Profile
@aaronlab
aaronlab / MySocketManager.swift
Created March 8, 2022 02:14 — forked from raxityo/MySocketManager.swift
SocketIO + RxSwift = Awesomeness 🚀
import RxCocoa
import RxSwift
import SocketIO
final class MySocketManager {
struct Relays {
// Custom events:
/// User properties updated
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
mr Marathi
bs Bosnian
ee_TG Ewe (Togo)
ms Malay
kam_KE Kamba (Kenya)
mt Maltese
ha Hausa
es_HN Spanish (Honduras)
ml_IN Malayalam (India)
ro_MD Romanian (Moldova)
@aaronlab
aaronlab / ContentView.swift
Created December 1, 2020 06:16 — forked from diamantidis/ContentView.swift
A SwiftUI field with a UIPickerView as a keyboard
import SwiftUI
struct ContentView: View {
@State var selectedIndex: Int? = nil
let options: [String] = ["Option1", "Option2"]
var body: some View {
PickerField("Select an option", data: self.options, selectionIndex: self.$selectedIndex)
}
}