gpt4 book ai didi

flutter - 处理水平步进器的溢出

转载 作者:行者123 更新时间:2023-12-02 21:32:27 25 4
gpt4 key购买 nike

我通过几个步骤实现了一个非常简单的水平步进器。但是我收到溢出横幅,指出我的步骤不适合 View 。

如何使带有步骤的栏可滚动?

import 'package:flutter/material.dart';

class SetupPage extends StatefulWidget {
@override
_SetupPageState createState() => _SetupPageState();
}

class _SetupPageState extends State<SetupPage> {

List<Step> steps = [
new Step(title: Text('Step 1'), content: new Container()),
new Step(title: Text('Step 2'), content: new Container()),
new Step(title: Text('Step 3'), content: new Container()),
new Step(title: Text('Step 4'), content: new Container()),
new Step(title: Text('Step 5'), content: new Container()),
new Step(title: Text('Step 6'), content: new Container()),
new Step(title: Text('Step 7'), content: new Container()),
];

@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: AppBar(title: Text('Setup'),),
body: new Stepper(steps: steps, type: StepperType.horizontal, currentStep: 0,),
);
}
}

最佳答案

我查看了步进器的源代码,它不处理其标题(带有步骤的栏)中的水平溢出。 scrollPhysics 属性甚至没有在 _buildHorizo​​ntal 中使用,该方法是在标题方向为水平时调用以构建标题的方法。

在撰写本文时,这似乎完全不受支持。我在 flutter github 页面上打开了一个问题,所以也许它会得到修复。

关于flutter - 处理水平步进器的溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52112206/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com