fix:持仓详情编辑,资讯下拉加载更多

This commit is contained in:
jingyun
2026-06-22 11:36:09 +08:00
parent 08023aff82
commit ab99010306
15 changed files with 1504 additions and 186 deletions
+21
View File
@@ -0,0 +1,21 @@
import 'package:flutter/material.dart';
import 'package:pull_to_refresh/pull_to_refresh.dart';
const ClassicFooter jinzhiClassicFooter = ClassicFooter(
height: 40,
idleIcon: const SizedBox.shrink(),
canLoadingIcon: const SizedBox.shrink(),
noMoreIcon: const SizedBox.shrink(),
failedIcon: const SizedBox.shrink(),
loadingIcon: const SizedBox(
width: 20,
height: 20,
child: CircularProgressIndicator(strokeWidth: 2),
),
loadingText: '',
idleText: '',
canLoadingText: '',
noDataText: '',
failedText: '',
textStyle: const TextStyle(fontSize: 12, color: Colors.grey),
);