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 FocusView: View { | |
enum FocusField { | |
case username, password | |
} | |
@State private var username = "" | |
@State private var password = "" | |
@FocusState private var focusedField: FocusField? | |
var body: some View { |
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 | |
import WebKit | |
import Ink | |
@main | |
struct poc_MarkdownToHtmlApp: App { | |
var body: some Scene { | |
WindowGroup { | |
ContentView() | |
} |
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
// | |
// ContentView.swift | |
// poc-bolderGrid | |
// | |
// Created by Andreas Seeger on 10.11.2023. | |
// | |
import SwiftUI | |
struct ContentView: View { |
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 | |
@main | |
struct so_ScrollViewWithPositionApp: App { | |
var body: some Scene { | |
WindowGroup { | |
ScrollContentView() | |
} | |
} | |
} |
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 | |
@main | |
struct poc_tca_Child_Parent_Child_CommunicationApp: App { | |
var body: some Scene { | |
WindowGroup { | |
ParentView( | |
store: Store( | |
initialState: ParentFeature.State(), | |
reducer: { ParentFeature() } |
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 ComposableArchitecture | |
import SwiftUI | |
@main | |
struct ItemBrainApp: App { | |
var body: some Scene { | |
WindowGroup { | |
RootFeatureView( | |
store: Store( | |
initialState: RootFeature.State( |
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
// | |
// Sharing_GRDB_in_TCAApp.swift | |
// Sharing-GRDB-in-TCA | |
// | |
// Created by Andreas Seeger on 15.06.2025. | |
// | |
import ComposableArchitecture | |
import OSLog | |
import SharingGRDB |