Close Menu
  • Home
  • AI
  • Big Data
  • Cloud Computing
  • iOS Development
  • IoT
  • IT/ Cybersecurity
  • Tech
    • Nanotechnology
    • Green Technology
    • Apple
    • Software Development
    • Software Engineering

Subscribe to Updates

Get the latest technology news from Bigteetechhub about IT, Cybersecurity and Big Data.

    What's Hot

    Amazon is seeking to raise about $12B through a bond sale, its first such deal in US dollars since 2022, to help fund acquisitions, capex, and more (Bloomberg)

    November 17, 2025

    Why Puppy Yoga Is the New Wellness Fix for Busy Americans

    November 17, 2025

    How to Navigate Cloud Migration Complexity: FAQs and Best Practices

    November 17, 2025
    Facebook X (Twitter) Instagram
    Facebook X (Twitter) Instagram
    Big Tee Tech Hub
    • Home
    • AI
    • Big Data
    • Cloud Computing
    • iOS Development
    • IoT
    • IT/ Cybersecurity
    • Tech
      • Nanotechnology
      • Green Technology
      • Apple
      • Software Development
      • Software Engineering
    Big Tee Tech Hub
    Home»iOS Development»ios – Align button position in Swift UI
    iOS Development

    ios – Align button position in Swift UI

    big tee tech hubBy big tee tech hubAugust 26, 2025032 Mins Read
    Share Facebook Twitter Pinterest Copy Link LinkedIn Tumblr Email Telegram WhatsApp
    Follow Us
    Google News Flipboard
    ios – Align button position in Swift UI
    Share
    Facebook Twitter LinkedIn Pinterest Email Copy Link


    I have two views with basically same structures, including the same padding and spacing. The only difference is that the first “Welcome step” view uses a larger icon size of 240, while the other views use an icon size of 80. While I’m ok with the text not aligning, I’d like to align the button positions across these views. I’ve attempted adjusting padding and using spacer(), but neither approach has worked. Is there a solution to this problem?

    Ideally, I would like to modify the button position in Welcom step view rather than other views.

    Any help is appreciated.

    struct WelcomeStepView: View {
        let onNext: () -> Void
        
        var body: some View {
            VStack(spacing: 40) {
                Spacer()
                // App Icon/Logo
                VStack(spacing: 20) {
                    Image("kacardicon")
                        .resizable()
                        .aspectRatio(contentMode: .fit)
                        .frame(height: 240)
                    
                    Text("Welcome to KaCard")
                        .font(.title)
                        .fontWeight(.bold)
                        .multilineTextAlignment(.center)
    
                    Text("This is your smart credit card manager. To get the best experience, we'd like to set up a few features.")
                        .font(.body)
                        .foregroundColor(.secondary)
                        .multilineTextAlignment(.center)
                        .padding(.horizontal)
                }
    
                Spacer()
    
                VStack(spacing: 16) {
                    Button(action: onNext) {
                        Text("Get Started")
                            .font(.headline)
                            .foregroundColor(.white)
                            .frame(maxWidth: .infinity)
                            .padding()
                            .background(Color.blue)
                            .cornerRadius(12)
                    }
                }
                .padding(.horizontal, 40)
                
                Spacer(minLength: 50)
            }
            .padding()
        }
    }
    
    struct NotificationPermissionStepView: View {
        let onNext: () async -> Void
        let onSkip: () -> Void
        @State private var isLoading = false
        
        var body: some View {
            VStack(spacing: 40) {
                Spacer()
                
                VStack(spacing: 20) {
                    Image(systemName: "bell.circle.fill")
                        .font(.system(size: 80))
                        .foregroundColor(.yellow)
                    
                    Text("Stay on Top of Your Bills")
                        .font(.title)
                        .fontWeight(.bold)
                        .multilineTextAlignment(.center)
                    
                    Text("We'll send you timely reminders for bill payments, annual fees, and signup bonus deadlines so you never miss an important date.")
                        .font(.body)
                        .foregroundColor(.secondary)
                        .multilineTextAlignment(.center)
                        .padding(.horizontal)
                }
                
                Spacer()
                
                VStack(spacing: 16) {
                    Button(action: {
                        isLoading = true
                        Task {
                            await onNext()
                            isLoading = false
                        }
                    }) {
                        HStack {
                            if isLoading {
                                ProgressView()
                                    .scaleEffect(0.8)
                                    .progressViewStyle(CircularProgressViewStyle(tint: .white))
                            }
                            Text(isLoading ? "Requesting..." : "Enable Notifications")
                                .font(.headline)
                        }
                        .foregroundColor(.white)
                        .frame(maxWidth: .infinity)
                        .padding()
                        .background(Color.yellow)
                        .cornerRadius(12)
                    }
                    .disabled(isLoading)
                    
                    Button("Skip for Now", action: onSkip)
                        .font(.subheadline)
                        .foregroundColor(.secondary)
                }
                .padding(.horizontal, 40)
                
                Spacer(minLength: 50)
            }
            .padding()
        }
    }
    



    Source link

    Align button iOS Position Swift
    Follow on Google News Follow on Flipboard
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    tonirufai
    big tee tech hub
    • Website

    Related Posts

    ios – UserDefaults doesn’t store its value

    November 16, 2025

    ios – How to implement native Tab Bar search (.searchable) for a Dictionary view in SwiftUI?

    November 15, 2025

    react native – How can I use single finger scroll reliably in iOS in ScrollList while also allowing swipe left and swipe right?

    November 14, 2025
    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    Amazon is seeking to raise about $12B through a bond sale, its first such deal in US dollars since 2022, to help fund acquisitions, capex, and more (Bloomberg)

    November 17, 2025

    Why Puppy Yoga Is the New Wellness Fix for Busy Americans

    November 17, 2025

    How to Navigate Cloud Migration Complexity: FAQs and Best Practices

    November 17, 2025

    Fortinet Exploited, China’s AI Hacks, PhaaS Empire Falls & More

    November 17, 2025
    About Us
    About Us

    Welcome To big tee tech hub. Big tee tech hub is a Professional seo tools Platform. Here we will provide you only interesting content, which you will like very much. We’re dedicated to providing you the best of seo tools, with a focus on dependability and tools. We’re working to turn our passion for seo tools into a booming online website. We hope you enjoy our seo tools as much as we enjoy offering them to you.

    Don't Miss!

    Amazon is seeking to raise about $12B through a bond sale, its first such deal in US dollars since 2022, to help fund acquisitions, capex, and more (Bloomberg)

    November 17, 2025

    Why Puppy Yoga Is the New Wellness Fix for Busy Americans

    November 17, 2025

    Subscribe to Updates

    Get the latest technology news from Bigteetechhub about IT, Cybersecurity and Big Data.

      • About Us
      • Contact Us
      • Disclaimer
      • Privacy Policy
      • Terms and Conditions
      © 2025 bigteetechhub.All Right Reserved

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