我正在为我的综合浏览量应用程序创建一个指标小部件,这意味着它将位于我的小部件树中。
我说的是,当我使用 PageViewIndicator类,它会自动放置在底部或中间..但是,例如,当我将其放置在中心时,它会将我的字段隐藏起来,这是我不想要的,所以您怎么看?
我已经使用过
PageIndicatorContainer(
pageView: PageView(
children: customWidgetLists
controller: controller,
),
align: IndicatorAlign.Center,
length: 4,
indicatorSpace: 20.0,
padding: const EdgeInsets.all(10),
indicatorColor: Colors.white,
indicatorSelectorColor: Colors.blue,
shape: IndicatorShape.circle(size: 12),
// shape: IndicatorShape.roundRectangleShape(size: Size.square(12),cornerSize: Size.square(3)),
// shape: IndicatorShape.oval(size: Size(12, 8)),
}
一切正常,只是我希望点位于屏幕的中心,而不是覆盖其他小部件,因为那样做。