messaging Components

Messaging Components

Components for building chat interfaces and messaging experiences. Includes message bubbles, chat input bars, and conversation lists with support for rich content and real-time updates.

2 components available

Quick Import Reference

swift
// Package.swift
.package(url: "https://github.com/luizmellodev/SwiftDS-package", from: "2.0.0")

// In any SwiftUI file
import SwiftDS

struct MyView: View {
    var body: some View {
        VStack(spacing: DSSpacing.md) {
            // Use any messaging component here
        }
    }
}