2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

一つの画面で縦と横スクロールできるようにする

Last updated at Posted at 2021-07-11

前提

  • Flutter 2.2.0 stable

縦と横スクロールを行うには

  • このWidgetを使います
    • CustomScrollView
    • SliverChildBuilderDelegate

注意点

  • リストアイテムの高さを指定する必要があるようです。
    • CustomScrollViewをSizedBoxでラップして
      • 仮に height: 50, と指定しています

こんな感じになります

作ったWidget

  • 縦 50個
  • 横 50個

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,
            ),
          ),
        ],
      ),
    );
  }
}

以上です。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?