swiftui
Custom viewDidLoad() Modifier in SwiftUI
// // ViewDidLoadView.swift // BeginerLabelAllDemo // // Created by JOYNAL ABEDIN on 22/10/22. // import SwiftUI struct ViewDidLoadView: View {
Read moreHow i will change color & text in keyboard return button swiftui?
Using .submitLabel() modifier we can change it. .submitLabel(.route) .submitLabel(.next) .submitLabel(.search) also we can fetch the action of return button .onSubmit
Read moreHow i will swipe list item in swiftUI?
// // ListSwipeView.swift // BeginerLabelAllDemo // // Created by JOYNAL ABEDIN on 22/10/22. // import SwiftUI struct ListSwipeView: View {
Read moreHow i will select text in swiftUI?
Using .textSelection() modifier we can select text .textSelection(.enabled)
Read more