gpt4 book ai didi

user-interface - flutter :将常规小部件放在CustomPaint Canvas 顶部

转载 作者:行者123 更新时间:2023-12-03 04:50:18 25 4
gpt4 key购买 nike

我的应用主要由CustomPainted页面组成。但是我很想在 Canvas 顶部放置一两个按钮,例如PopupMenuButtonIconButton

这可能吗?如果是,怎么办?

最佳答案

是的,这是可能的。 CustomPaint接受child属性,该属性可用于在其顶部放置小部件,例如:

CustomPaint(
painter: _RadialPainter(
color: Theme.of(context).primaryColor,
completedPercentage: progress.completed,
),
child: Center(
child: Text(
'${progress.left}',
style: Theme.of(context).textTheme.headline4,
),
),
);

请注意, _RadialPainter扩展了 CustomPainter

关于user-interface - flutter :将常规小部件放在CustomPaint Canvas 顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61518402/

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