如何滚动或跳到pageview.builder或pagecontroller flutter中的位置



问题:使用pagecontroller加载pageview后无法滚动到位置 *

喜欢viewpager滚动到android

中的特定页面
Widget _buildCarousel(BuildContext context, int selectedIndex) {
    PageController controller = PageController(viewportFraction: 1, keepPage: true);
    return Column(
      mainAxisSize: MainAxisSize.min,
      children: <Widget>[
        SizedBox(
          // you may want to use an aspect ratio here for tablet support
          height: 400.0,
          width: 240,
          child: PageView.builder(
            itemCount: assetImageList.length,
            controller: controller,
            itemBuilder: (BuildContext context, int itemIndex) {
              return _buildCarouselItem(context, selectedIndex, itemIndex);
            },
          ),
        )
      ],
    );
  }

最终找到了答案。只需设置初始页面: mselectedPosition 属性类似:

child: PageView.builder(
        itemCount: mTemplateModelList.length,
        controller: PageController(initialPage: mSelectedPosition, keepPage: true, viewportFraction: 1),
        itemBuilder: (BuildContext context, int itemIndex) {
          return _buildCarouselItem(context, selectedIndex, itemIndex);
        },
      ),

或单击按钮后要滚动页面,则可以使用 jumpto((使用 pagecontroller 方法,该方法在下面清楚地提到了另一个用户:@android。

当前有2个选项可以处理您的请求:

PageView.builder(
  controller: _pageController,
  itemCount: _list.length,
  itemBuilder: (context, index) {
    return GestureDetector(
      onTap: () {
        _pageController.jumpToPage(index); // for regular jump
        _pageController.animateToPage(_position, curve: Curves.decelerate, duration: Duration(milliseconds: 300)); // for animated jump. Requires a curve and a duration
      },
      child: Container();
    );
  }
),

您可以使用 jumpto((方法滚动位置 pageView 。我在下面的示例中创建了一个ChangePageViewPostion((方法:

import 'package:flutter/material.dart';
class MyPageView extends StatefulWidget {
  createState() {
    return StateKeeper();
  }
}
class StateKeeper extends State<MyPageView> {
  PageController controller = PageController(viewportFraction: 1, keepPage: true);
  var currentPageValue = 0.0;
  var mItemCount = 10;
  @override
  void initState() {
    // TODO: implement initState
    super.initState();
    controller.addListener(() {
      setState(() {
        currentPageValue = controller.page;
      });
    });
  }
  void changePageViewPostion(int whichPage) {
    if(controller != null){
      whichPage = whichPage + 1; // because position will start from 0
      double jumpPosition = MediaQuery.of(context).size.width / 2;
      double orgPosition = MediaQuery.of(context).size.width / 2;
      for(int i=0; i<mItemCount; i++){
        controller.jumpTo(jumpPosition);
        if(i==whichPage){
          break;
        }
        jumpPosition = jumpPosition + orgPosition;
      }
    }
  }
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('PageView position change'),
      ),
      body: PageView.builder(
        controller: controller,
        itemBuilder: (context, position) {
          return Container(
            color: position % 2 == 0 ? Colors.blue : Colors.pink,
            child: Column(
              children: <Widget>[
                Center(
                  child: Text(
                    "Page " + (position + 1).toString(),
                    style: TextStyle(color: Colors.white, fontSize: 22.0),
                  ),
                ),
                Align(
                  alignment: FractionalOffset.bottomCenter,
                  child: Padding(padding: EdgeInsets.only(bottom: 20),
                    child: FloatingActionButton(
                        elevation: 0.0,
                        child: new Icon(Icons.check),
                        backgroundColor: new Color(0xFFE57373),
                        onPressed: (){
                          changePageViewPostion(5);
                        }
                    ),),
                ),
              ],
            ),
          );
        },
        itemCount: mItemCount,
      )
    );
  }

}

我们可以使用以下控制器获得当前位置:

controller.addListener(() {
      setState(() {
        currentPageValue = controller.page.toInt();
        print((currentPageValue + 1).toString());
      });
    });

希望它有帮助:(

如果您只想使用按钮滚动到下一页,则只需使用以下方法。

  //Create a PageController variable
  late PageController _pageController;
  
  //Initialize the variable in the init method.
  @override
  void initState() {
    _pageController = PageController(
        initialPage: _activePage, keepPage: true, viewportFraction: 1);
    super.initState();
  }
  //Use this nextPage() method in the onPressed() method.
  onPressed: () {
    setState(() {
      _activePage < 2
         ? _activePage++
         : Navigator.pushReplacementNamed(
             context, LoginScreen.id);
    });
    _pageController.nextPage(
      duration: const Duration(milliseconds: 300),
      curve: Curves.decelerate,
    );
  }

请记住,在pageView中的特定屏幕时请勿使用

儿童:pageview.builder(物理:const noterscrollablesscrollphysics((,(

它禁用可滚动

最新更新