An open API service indexing awesome lists of open source software.

https://github.com/zunda-pixel/chatbubble

ChatBubble SwiftUI
https://github.com/zunda-pixel/chatbubble

swift swift-package-manager swiftui

Last synced: 7 months ago
JSON representation

ChatBubble SwiftUI

Awesome Lists containing this project

README

          

# ChatBubble

[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fzunda-pixel%2FChatBubble%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/zunda-pixel/ChatBubble)
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fzunda-pixel%2FChatBubble%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/zunda-pixel/ChatBubble)

screenshotscreenshot

```swift
Text("Stanford Video Steve Jobs’ 2005 Stanford Commencement Address I am honored to be with you today at your commencement from one of the finest universities in the world.")
.fixedSize(horizontal: false, vertical: true)
.chatBubble(
direction: .leadingTop,
cornerRadius: 18,
color: .blue.opacity(0.5)
)
```

```swift
ChatBubble(cornerRadius: 18)
.frame(width: 300, height: 100)
.foregroundColor(.cyan)
```

```swift
Text("Sample Text.")
.fixedSize(horizontal: false, vertical: true)
.padding(9)
.background {
ChatBubble(cornerRadius: 18)
.rotateChatBubble(position: .trailingBottom)
.foregroundColor(.red.opacity(0.5))
}
```