My First Blog Post

Welcome to my personal blog where I share insights about iOS development, SwiftUI, and technical experiments.

swift swiftui ios programming
My First Blog Post

Welcome to My Blog

Hello and welcome to my personal blog! I’m excited to share my journey in iOS development, SwiftUI experiments, and technical insights.

SwiftUI Example

Here’s a simple SwiftUI example that demonstrates a modern approach to building user interfaces:

import SwiftUI

struct ContentView: View {
    @State private var isAnimating = false
    
    var body: some View {
        VStack(spacing: 20) {
            Image(systemName: "star.fill")
                .font(.system(size: 50))
                .foregroundColor(.yellow)
                .scaleEffect(isAnimating ? 1.2 : 1.0)
                .animation(.easeInOut(duration: 1.0).repeatForever(autoreverses: true), value: isAnimating)
            
            Text("Welcome to SwiftUI!")
                .font(.title)
                .fontWeight(.bold)
            
            Text("This is a beautiful and modern way to build iOS apps.")
                .multilineTextAlignment(.center)
                .foregroundColor(.secondary)
        }
        .padding()
        .onAppear {
            isAnimating = true
        }
    }
}

#Preview {
    ContentView()
}

What to Expect

In this blog, you’ll find:

Stay tuned for more content coming soon!