feat: 为划转页面确认按钮添加图标
- 添加 LucideIcons.arrowRightLeft 图标到确认按钮 - 加载状态时自动隐藏图标 - 提升用户体验和视觉识别度
This commit is contained in:
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"e4b8dca3f1b4ede4c30371002441c88c12187e
|
|||||||
|
|
||||||
_flutter.loader.load({
|
_flutter.loader.load({
|
||||||
serviceWorkerSettings: {
|
serviceWorkerSettings: {
|
||||||
serviceWorkerVersion: "1220207761" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
serviceWorkerVersion: "2388525436" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -212,6 +212,7 @@ class _TransferPageState extends State<TransferPage> {
|
|||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: NeonButton(
|
child: NeonButton(
|
||||||
text: _isLoading ? '处理中...' : '确认划转',
|
text: _isLoading ? '处理中...' : '确认划转',
|
||||||
|
icon: _isLoading ? null : LucideIcons.arrowRightLeft,
|
||||||
type: NeonButtonType.primary,
|
type: NeonButtonType.primary,
|
||||||
onPressed: _isLoading ? null : _doTransfer,
|
onPressed: _isLoading ? null : _doTransfer,
|
||||||
height: 52,
|
height: 52,
|
||||||
|
|||||||
Reference in New Issue
Block a user