目录
目录README.md

ChatBubble

スクリーンショット 2022-11-15 0 32 34スクリーンショット 2022-11-15 0 47 58

struct SingleChatBubble: PreviewProvider {
  static var previews: some View {
    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: 17,
        color: .blue.opacity(0.5)
      )
  }
}
struct ShapePreview: PreviewProvider {
  static var previews: some View {
    ChatBubble(cornerRadius: 17)
      .frame(width: 300, height: 100)
      .foregroundColor(.cyan)
  }
}
struct RawChatBubble: PreviewProvider {
  static var previews: some View {
    Text("Sample Text.")
      .fixedSize(horizontal: false, vertical: true)
      .padding()
      .background {
        ChatBubble(cornerRadius: 17)
          .rotateChatBubble(position: .trailingBottom)
          .foregroundColor(.red.opacity(0.5))
      }
  }
}

参考にしたもの

https://qiita.com/yuppejp/items/92429a0fc8440f9da487

关于
48.0 KB
邀请码