Add an image/images using Stack?
roly151 opened this issue · 1 comments
roly151 commented
I'm relatively inexperienced, so not sure if this is possible - but I would like to add some images to the bottom of the candle chart I have created. I thought I would be able to use Stack and Positioned widgets to add them. However putting my chart widget into a Stack breaks the chart. Here are the images that show what happens when I add a Stack only. Is this possible to do?
Container(
child: rangeChart(context),
),
Container(
child: Stack(
children: <Widget>[
rangeChart(context),
]
)
),
roly151 commented
I added a container around my chart widget and set the height and with of the container to solve my problem.