MyCuppa

MyCuppa for iOS

Build beautiful iOS applications with the MyCuppa framework

📱 iOS Documentation

The MyCuppa iOS framework provides a comprehensive set of tools and components for building native iOS applications with Swift.

Key Features

  • Native Swift implementation
  • SwiftUI and UIKit support
  • Reactive data binding
  • Built-in navigation patterns
  • Type-safe networking
  • Comprehensive UI component library

Getting Started

Install MyCuppa for iOS using Swift Package Manager:

.package(url: "https://github.com/cuppa-platform/mycuppa-ios", from: "1.0.0")

Quick Start Example

import SwiftUI
import MyCuppa

struct ContentView: View {
    @StateObject var viewModel = CuppaViewModel()

    var body: some View {
        CuppaContainer {
            VStack {
                Text("Welcome to MyCuppa")
                    .font(.title)

                CuppaButton("Get Started") {
                    viewModel.handleAction()
                }
            }
        }
    }
}

📚 Full Documentation

For complete iOS documentation, API reference, and guides, visit the MyCuppa iOS GitHub repository.