fix part screen voice input and adaption
This commit is contained in:
@@ -329,8 +329,8 @@ class _ChatBubbleState extends State<ChatBubble> {
|
||||
padding: const EdgeInsets.only(left: 12),
|
||||
child: Image.asset(
|
||||
'assets/images/copy.png',
|
||||
width: 24,
|
||||
height: 24
|
||||
width: 22,
|
||||
height: 22
|
||||
),
|
||||
),
|
||||
),
|
||||
@@ -345,9 +345,9 @@ class _ChatBubbleState extends State<ChatBubble> {
|
||||
padding: const EdgeInsets.only(left: 12),
|
||||
child: _liked
|
||||
? Image.asset('assets/images/liked2.png',
|
||||
width: 24, height: 24)
|
||||
width: 22, height: 22)
|
||||
: Image.asset('assets/images/liked1.png',
|
||||
width: 24, height: 24),
|
||||
width: 22, height: 22),
|
||||
),
|
||||
),
|
||||
InkWell(
|
||||
@@ -361,9 +361,9 @@ class _ChatBubbleState extends State<ChatBubble> {
|
||||
padding: const EdgeInsets.only(left: 12),
|
||||
child: _disliked
|
||||
? Image.asset('assets/images/disliked2.png',
|
||||
width: 24, height: 24)
|
||||
width: 22, height: 22)
|
||||
: Image.asset('assets/images/disliked1.png',
|
||||
width: 24, height: 24)),
|
||||
width: 22, height: 22)),
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user