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 ComposableArchitecture | |
| struct TestState: Equatable { | |
| @BindableState var value = "" | |
| } | |
| enum TestAction: BindableAction { | |
| case binding(BindingAction<TestState>) |
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
| // | |
| // EmptySwiftUIModifiers.swift | |
| // Architectory | |
| // | |
| // Created by Nikita Patskov on 09.09.2020. | |
| // | |
| import SwiftUI | |
| struct TestView: View { |
NewerOlder