positionSticky method

Widget positionSticky()

sticky -->gt; 粘性定位(在SingleChildScrollView中实现)

Implementation

Widget positionSticky() {
  // Flutter中的粘性定位需要特殊处理,这里先返回普通构建
  return build();
}