【发布时间】:2021-12-16 20:29:50
【问题描述】:
【问题讨论】:
标签: flutter flutter-web
【问题讨论】:
标签: flutter flutter-web
查看flutter_chat_bubble 库。
您可以根据需要调整属性。
ChatBubble( clipper: ChatBubbleClipper8(type: BubbleType.sendBubble), ) ChatBubble( clipper: ChatBubbleClipper8(type: BubbleType.receiverBubble), )
【讨论】:
试试下面的代码希望它对你有帮助参考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,
),
),
],
),
【讨论】: