Sendbird Chat in SwiftUI:SwiftUI中的简单Sendbird聊天应用程序 源码
Sendbird聊天SwiftUI 尖端 如何绘制聊天界面? 通过使用.rotationEffect(Angle(degrees: 180))两次,可以使消息气泡与底部对齐。 ScrollView ( showsIndicators : false ) { LazyVStack { // Align to the bottom Spacer () // Draw bubbles ForEach (messages) { MessageBubble ( message : $0 ) } } . rotationEffect ( Angle ( degrees : 180 )) } . rotationEffect ( An
用户评论