From 83aab985d35da7af610e9ccac393d72948bc56f4 Mon Sep 17 00:00:00 2001 From: "pengfei.zhou" Date: Thu, 15 Jul 2021 17:15:55 +0800 Subject: [PATCH] iOS: do not show flowlayout's scroll indicator --- doric-iOS/Pod/Classes/Shader/DoricFlowLayoutNode.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doric-iOS/Pod/Classes/Shader/DoricFlowLayoutNode.m b/doric-iOS/Pod/Classes/Shader/DoricFlowLayoutNode.m index 8bd8d695..d7907457 100644 --- a/doric-iOS/Pod/Classes/Shader/DoricFlowLayoutNode.m +++ b/doric-iOS/Pod/Classes/Shader/DoricFlowLayoutNode.m @@ -189,6 +189,8 @@ - (UICollectionView *)build { it.pagingEnabled = NO; it.delegate = self; it.dataSource = self; + it.showsVerticalScrollIndicator = NO; + it.showsHorizontalScrollIndicator = NO; [it registerClass:[DoricFlowLayoutViewCell class] forCellWithReuseIdentifier:@"doricCell"]; if (@available(iOS 11, *)) { it.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;