ソースを参照

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;


読み込み中…
キャンセル
保存