TabController不会改变Flutter TabBarView

时间:2019-05-01 02:39:01

标签: flutter

我正在尝试以编程方式在应用程序内的各个标签之间进行更改。 tabController.animateTo()仅更改TabBar,而不更改TabBarView。

这是我的示例,每当我向右滑动时,它都应该animateTo LEFT,因为制表符更改侦听器会自动调用animateTo(0)。 但是,只有TabBar更改为LEFT(如预期),而不更改为TabBarView(不预期)。我希望两者都更改为LEFT。

这是错误还是我错过了什么?

import 'package:flutter/material.dart';

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Flutter Demo',
      home: new MyTabbedPage(),
    );
  }
}

class MyTabbedPage extends StatefulWidget {
  const MyTabbedPage({Key key}) : super(key: key);

  @override
  _MyTabbedPageState createState() => new _MyTabbedPageState();
}

class _MyTabbedPageState extends State<MyTabbedPage> with SingleTickerProviderStateMixin {
  final List<Tab> myTabs = <Tab>[
    new Tab(text: 'LEFT'),
    new Tab(text: 'RIGHT'),
  ];

  TabController _tabController;

  @override
  void initState() {
    super.initState();
    _tabController = new TabController(vsync: this, length: myTabs.length);
    _tabController.addListener(_handleTabChange);
  }

  @override
  void dispose() {
    _tabController.dispose();
    super.dispose();
  }

  void _handleTabChange() {
    _tabController.animateTo(0);
  }

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text("Tab demo"),
        bottom: new TabBar(
          controller: _tabController,
          tabs: myTabs,
        ),
      ),
      body: new TabBarView(
        controller: _tabController,
        children: myTabs.map((Tab tab) {
          return new Center(child: new Text(tab.text));
        }).toList(),
      ),
      floatingActionButton: new FloatingActionButton(
        onPressed: () => _tabController.animateTo((_tabController.index + 1) % 2), // Switch tabs
        child: new Icon(Icons.swap_horiz),
      ),
    );
  }
}

enter image description here

1 个答案:

答案 0 :(得分:1)

这是因为您在每次更改_tabController.addListener(_handleTabChange);时都有一个侦听器,并且每次调用_tabController.animateTo时,方法_handleTabChange都会执行,然后它会动画到第一个选项卡。

删除或评论此行

 _tabController.addListener(_handleTabChange);

它应该可以工作