한 화면에서 세로 및 가로 스크롤 가능
전제
세로 및 가로 스크롤을 수행하려면
주의점
height: 50,
라고 지정하고 있습니다 이런 느낌이 듭니다
만든 Widget
class MultiCustomScrollView extends StatelessWidget {
const MultiCustomScrollView({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Expanded(
child: CustomScrollView(
scrollDirection: Axis.vertical,
slivers: [
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int verticalIndex) {
return SizedBox(
height: 50,
child: CustomScrollView(
scrollDirection: Axis.horizontal,
slivers: [
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int horizontalIndex) {
return SizedBox(
height: 50,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
'test${(verticalIndex + 1) * (horizontalIndex + 1)}',
),
),
);
},
childCount: 50,
),
),
],
),
);
},
childCount: 50,
),
),
],
),
);
}
}
이상입니다.
Reference
이 문제에 관하여(한 화면에서 세로 및 가로 스크롤 가능), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tamamu79/items/ad053470dd504d137dfc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)