소스 검색

1.修复多眼导航显示异常的问题

tags/0.0.4+4
“yanghuaxuan” 3 년 전
부모
커밋
e74e71c220
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      lib/widgets/custom/multi_nav/custom_quick_entry.dart

+ 2
- 1
lib/widgets/custom/multi_nav/custom_quick_entry.dart 파일 보기

@@ -93,12 +93,13 @@ class __CustomQuickEntryContainerState extends State<_CustomQuickEntryContainer>
//计算实际显示行数
if(totalRowSize*columSize>totalDataSize){
for(int index=1;index<=totalRowSize;index++){
if(index*columSize>=totalRowSize){
if(index*columSize>=totalDataSize){
totalRowSize=index;
break;
}
}
}
print("行数"+totalRowSize.toString());

// 图标的高度
double iconHeight = 40.0;


불러오는 중...
취소
저장