style: 完成前端专业金融风格优化
- 主题配色: 黑金传奇(暗) + 白金殿堂(亮) - 底部导航: 去掉毛玻璃,简洁专业 - 交易页面: 明亮模式颜色优化,实心按钮 - 按钮圆角: xxl(24px) → lg(12px)/md(8px) - 字体系统: Inter(币安同款) - 整体风格: 专业金融科技
This commit is contained in:
@@ -281,7 +281,9 @@ class _NeonButtonState extends State<NeonButton>
|
||||
decoration: BoxDecoration(
|
||||
gradient: _gradient,
|
||||
color: _gradient == null ? _backgroundColor : null,
|
||||
borderRadius: BorderRadius.circular(AppRadius.xxl),
|
||||
borderRadius: BorderRadius.circular(
|
||||
widget.type == NeonButtonType.outline ? AppRadius.md : AppRadius.lg,
|
||||
),
|
||||
border: widget.type == NeonButtonType.outline
|
||||
? Border.all(
|
||||
color: colorScheme.outlineVariant.withOpacity(0.3),
|
||||
@@ -324,7 +326,9 @@ class _NeonButtonState extends State<NeonButton>
|
||||
if (widget.showGlow && widget.type != NeonButtonType.outline) {
|
||||
return NeonGlow(
|
||||
glowColor: _glowColor,
|
||||
borderRadius: BorderRadius.circular(AppRadius.xxl),
|
||||
borderRadius: BorderRadius.circular(
|
||||
widget.type == NeonButtonType.outline ? AppRadius.md : AppRadius.lg,
|
||||
),
|
||||
child: button,
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user