如何使用 api 响应填充 flutter tabBar

how to populate flutter tabBar using an api response

如何使用 api 响应(字符串数组)而不是像这样的硬编码文本来填充 TabBar in flutter..

TabBar(
            isScrollable: true,
            tabs: [
              Tab(
                text: 'text1',
              ),
              Tab(
                text: 'text2',
              ),
              Tab(
                text: 'text3',
              ),

            ],

您可以使用以下代码实现动态 TabBar

TabBar(
  isScrollable: true,
  tabs: List<Widget>.generate(
    apiResponse.length,
    (int index) {
      return Container(
        child: new Tab(
          child: Text("Api Response $index"),
        ),
      );
    },
  ),
);