mirror of
https://github.com/Linloir/Simple-TCP-Client.git
synced 2025-12-18 17:28:11 +08:00
Improvements:
- Improve display size of file box icons
This commit is contained in:
parent
bf499f2434
commit
d1507627e7
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author : Linloir
|
* @Author : Linloir
|
||||||
* @Date : 2022-10-14 17:07:13
|
* @Date : 2022-10-14 17:07:13
|
||||||
* @LastEditTime : 2022-10-22 23:31:19
|
* @LastEditTime : 2022-10-23 13:12:27
|
||||||
* @Description :
|
* @Description :
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -54,17 +54,23 @@ class FileBox extends StatelessWidget {
|
|||||||
size: 20,
|
size: 20,
|
||||||
color: history.type == ChatHistoryType.income ? Colors.red[800] : Colors.white.withOpacity(0.8),
|
color: history.type == ChatHistoryType.income ? Colors.red[800] : Colors.white.withOpacity(0.8),
|
||||||
) : history.status == ChatHistoryStatus.processing ?
|
) : history.status == ChatHistoryStatus.processing ?
|
||||||
SizedBox(
|
Container(
|
||||||
height: 16.0,
|
height: 16.0,
|
||||||
width: 16.0,
|
width: 20.0,
|
||||||
|
padding: const EdgeInsets.only(
|
||||||
|
right: 4.0
|
||||||
|
),
|
||||||
child: LoadingIndicator(
|
child: LoadingIndicator(
|
||||||
indicatorType: Indicator.ballPulseSync,
|
indicatorType: Indicator.ballPulseSync,
|
||||||
colors: [Colors.white.withOpacity(0.8)],
|
colors: [Colors.white.withOpacity(0.8)],
|
||||||
),
|
),
|
||||||
) :
|
) :
|
||||||
SizedBox(
|
Container(
|
||||||
height: 16.0,
|
height: 16.0,
|
||||||
width: 16.0,
|
width: 20.0,
|
||||||
|
padding: const EdgeInsets.only(
|
||||||
|
right: 4.0
|
||||||
|
),
|
||||||
child: CircularProgressIndicator(
|
child: CircularProgressIndicator(
|
||||||
color: history.type == ChatHistoryType.income ? Colors.blue[800] : Colors.white.withOpacity(0.8),
|
color: history.type == ChatHistoryType.income ? Colors.blue[800] : Colors.white.withOpacity(0.8),
|
||||||
strokeWidth: 2.5,
|
strokeWidth: 2.5,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user