颤振聊天气泡

Posted

技术标签:

【中文标题】颤振聊天气泡【英文标题】:Flutter chat bubble 【发布时间】:2021-12-16 20:29:50 【问题描述】:

我想为聊天应用程序创建这种小部件。如何在颤振中设计这个。如果你有想法,谁能帮助我

【问题讨论】:

【参考方案1】:

查看flutter_chat_bubble 库。

您可以根据需要调整属性。

ChatBubble(
    clipper: ChatBubbleClipper8(type: BubbleType.sendBubble),
  )
  
ChatBubble(
    clipper: ChatBubbleClipper8(type: BubbleType.receiverBubble),
  )

【讨论】:

【参考方案2】:

试试下面的代码希望它对你有帮助参考flutter_chat_bubble包here或试试this包也

Column(
            children: [
              ChatBubble(
                child: Text(
                  "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
                  style: TextStyle(
                    color: Colors.white,
                  ),
                ),
                clipper: ChatBubbleClipper3(
                  type: BubbleType.sendBubble,
                ),
              ),
              SizedBox(
                height: 30,
              ),
              ChatBubble(
                child: Text(
                  "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
                  style: TextStyle(
                    color: Colors.white,
                  ),
                ),
                clipper: ChatBubbleClipper3(
                  type: BubbleType.receiverBubble,
                ),
              ),
            ],
          ),   

您的结果屏幕->

【讨论】:

我想要提取设计

以上是关于颤振聊天气泡的主要内容,如果未能解决你的问题,请参考以下文章

iOS绘制聊天气泡

如何在 React JS 中使用聊天气泡制作像 UI 一样的聊天

怎么实现微信聊天时的气泡图

请教仿微信聊天气泡效果 在ios中是怎么实现的

有啥第三方库可以方便的实现iOS的聊天气泡

React Native 中的聊天气泡