KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
ChatBubble
★ 13
Open GitHub ↗
ChatBubble for SwiftUI
Download README (.md)
Explore Similar Repositories
DiffDock_GPU
:
Dockerized Version of the DiffDock model from MIT
vehicle_captain_toolbox
:
Toolbox for V2X communication.
Cafe-template
:
No description available.
PoshToDon
:
Mastodon Client
invite
:
Invite links for deltachat
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ChatBubble
?
Download (.md)
# ChatBubble [](https://swiftpackageindex.com/zunda-pixel/ChatBubble) [](https://swiftpackageindex.com/zunda-pixel/ChatBubble) <img height="300" alt="screenshot" src="https://user-images.githubusercontent.com/47569369/201700410-c4035784-f678-4aa0-90e4-f7561f6a3893.png"><img height="300" alt="screenshot" src="https://user-images.githubusercontent.com/47569369/201703849-e02e919b-1916-49b2-9121-f6ecb7268df9.png"> ```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)) } ```