Close Menu
geekfence.comgeekfence.com
    What's Hot

    refurbed and GoPro announce exclusive partnership in Ireland

    March 28, 2026

    Enterprise Network Trends & Strategy: WAN Manager Survey Insights

    March 28, 2026

    Posit AI Blog: De-noising Diffusion with torch

    March 28, 2026
    Facebook X (Twitter) Instagram
    • About Us
    • Contact Us
    Facebook Instagram
    geekfence.comgeekfence.com
    • Home
    • UK Tech News
    • AI
    • Big Data
    • Cyber Security
      • Cloud Computing
      • iOS Development
    • IoT
    • Mobile
    • Software
      • Software Development
      • Software Engineering
    • Technology
      • Green Technology
      • Nanotechnology
    • Telecom
    geekfence.comgeekfence.com
    Home»iOS Development»Create a multi-line, editable text view using TextEditor in SwiftUI. – iOSTutorialJunction
    iOS Development

    Create a multi-line, editable text view using TextEditor in SwiftUI. – iOSTutorialJunction

    AdminBy AdminNovember 5, 2025No Comments2 Mins Read1 Views
    Facebook Twitter Pinterest LinkedIn Telegram Tumblr Email
    Create a multi-line, editable text view using TextEditor in SwiftUI. – iOSTutorialJunction
    Share
    Facebook Twitter LinkedIn Pinterest Email


    In UIKit, we use UITextView for input fields that require long text entries from the user. In SwiftUI, we can accomplish the same with TextEditor. The TextEditor view in SwiftUI handles multiline text input. In this tutorial, we will learn how to use TextEditor with a placeholder, making it function similarly to a UITextView in UIKit.

    Step-by-Step Implementation of multi-line editable text field in SwiftUI

    Step 1: Open Xcode and select “Create a new Xcode project.“. Choose “App” under the iOS tab.Name your project and make sure “SwiftUI” is selected for the User Interface.

    Step 2: Create a state variable named multiLineText.

    import SwiftUI
    
    struct FeedbackView: View {
       @State private var multiLineText = ""
       var body: some View {
       }
    
    }

    Step 3: Let start designing our multi-line text field in SwiftUI using TextEditor.

    • First we will take VStack with alignment to leading as we want our view to not to be in centre of screen but toward the leading edge.
    • Add a Text view with title “Comment” illustrating user the he can add comments below
    • Take a ZStack with alignment to topLeading and inside it first we will add a RoundedRectangle view so that we can give border to our TextEditor. Then will check if state variable named multiLineText is empty or not. If it’s empty we will add placeholder text using Text view.
    • Finally we will add TextEditor to our ZStack. Lastly we will change opacity of TextEditor if it’s empty in order to let placeholder Text visible to user.

    Complete code snippet is given below.

    import SwiftUI
    
    struct ContentView: View {
        @State private var multiLineText = ""
        var body: some View {
            VStack(alignment: .leading) {
                Text("Comment")
                    .font(.system(size: 14.0, weight: .medium))
                ZStack(alignment: .topLeading) {
                    RoundedRectangle(cornerRadius: 14, style: .continuous)
                        .strokeBorder(Color.red.opacity(0.6), lineWidth: 1)
                    if multiLineText.isEmpty {
                        Text("Placeholder Text")
                            .foregroundColor(Color.gray)
                            .font(.system(size: 14.0, weight: .regular))
                            .padding(.horizontal, 8)
                            .padding(.vertical, 12)
                    }
                    TextEditor(text: $multiLineText)
                        .font(.system(size: 14.0))
                        .opacity(multiLineText.isEmpty ? 0.7 : 1)
                        .padding(4)
                    
                }
                .frame(height: 135)
            }
            .padding()
        }
    }
    
    #Preview {
        ContentView()
    }
    

    Output of using TextEditor with Placeholder in SwiftUI

    Create a multi-line, editable text view using TextEditor in SwiftUI. – iOSTutorialJunction

    This code snippets will give you a multi-line editable text field in SwiftUI with a placeholder that disappears once the user starts typing and re – appears if its empty





    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email

    Related Posts

    ios – What is the correct way to initialize a Data property in a model object in SwiftData / CloudKit?

    March 28, 2026

    Ultimate UICollectionView guide with iOS examples written in Swift

    March 24, 2026

    app store – Guideline 3.1.1 – Business – Payments – In-App Purchase in ios reject

    March 23, 2026

    More Updates from the Swift Workshop

    March 19, 2026

    How to use iCloud drive documents?

    March 18, 2026

    ios – Video input to Shortcuts action

    March 17, 2026
    Top Posts

    Understanding U-Net Architecture in Deep Learning

    November 25, 202527 Views

    Hard-braking events as indicators of road segment crash risk

    January 14, 202624 Views

    Redefining AI efficiency with extreme compression

    March 25, 202619 Views
    Don't Miss

    refurbed and GoPro announce exclusive partnership in Ireland

    March 28, 2026

    refurbed, Ireland’s leading online marketplace for refurbished goods, has launched an exclusive new partnership with…

    Enterprise Network Trends & Strategy: WAN Manager Survey Insights

    March 28, 2026

    Posit AI Blog: De-noising Diffusion with torch

    March 28, 2026

    The Path to Agentic-Ready Data: Takeaways from the Gartner Data & Analytics Summit

    March 28, 2026
    Stay In Touch
    • Facebook
    • Instagram
    About Us

    At GeekFence, we are a team of tech-enthusiasts, industry watchers and content creators who believe that technology isn’t just about gadgets—it’s about how innovation transforms our lives, work and society. We’ve come together to build a place where readers, thinkers and industry insiders can converge to explore what’s next in tech.

    Our Picks

    refurbed and GoPro announce exclusive partnership in Ireland

    March 28, 2026

    Enterprise Network Trends & Strategy: WAN Manager Survey Insights

    March 28, 2026

    Subscribe to Updates

    Please enable JavaScript in your browser to complete this form.
    Loading
    • About Us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • Terms and Conditions
    © 2026 Geekfence.All Rigt Reserved.

    Type above and press Enter to search. Press Esc to cancel.