skip to Main Content

Flutter: How to make telegram type bubble in chat message

Current output: Expected output: Code: Align( alignment: Alignment.topRight, child: Container( padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 20), margin: EdgeInsets.only(right: 12, top: 8), decoration: BoxDecoration( color: Color(0xFF486993), borderRadius: BorderRadius.all(Radius.circular(20)), ), child: Text("This is my message"), ), )

VIEW QUESTION
Back To Top
Search