fix: Add tiny border to message bubbles
This commit is contained in:
parent
caaa7bd2dc
commit
06c8e45e79
1 changed files with 6 additions and 0 deletions
|
|
@ -94,6 +94,12 @@ class Message extends StatelessWidget {
|
|||
onLongPress: !longPressSelect ? null : () => onSelect(event),
|
||||
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
|
||||
child: Container(
|
||||
decoration: BoxDecoration(
|
||||
border: Border.all(
|
||||
color: Theme.of(context).secondaryHeaderColor,
|
||||
),
|
||||
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
|
||||
),
|
||||
padding:
|
||||
const EdgeInsets.symmetric(vertical: 6, horizontal: 10),
|
||||
constraints:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue