How to draw custom pie ring chart like this image in flutter - flutter

I have to custom like this image. Can anyone help me with example ?
I tried some lib in pub dev but not success.

This result you can achieve with mrx_charts library

Related

How to draw chart like above using dart flutter language?

enter image description here
i have tried pie_chart and wish someone could help me

How to create this custom flowchart in flutter

I need help creating this flow chart in flutter. I've tried packages like graphite and syncfusion but they dont do the job. Any help is appreciated.
Link to image
You can create a similar look using a custom painter in flutter.
I solved this by editing the svg code and adding variables to colors and texts, thereby making them dynamic.

How to make a cup/bowl like shape in flutter?

I am currently using the package curved_navigation_bar: ^0.4.0-nullsafety.0 to display a navigation bar in my flutter project.
currently the default shape of selected icon looks like this
I want something that looks like this
when I go into the source code I see some mathematical formulas which I tried tweaking but am not getting a similar result. can someone help me? a container or widget of this exact shape will also help me. thanks

Flutter - SVG file's stroke becomes more thin

I have an SVG type file. I want to show it in my Flutter app using flutter_svg package. But when I imported it, the color turns into black.
According to this answer, I 'm using this software to clean it.
For some files, it's worked really well. But, I have an issue with this file.
When I'm trying to show it in my app, the stroke width decreased and my SVG becomes really thin.
This is what I want:
But, this is what I've got:
Does anyone have an idea how to solve this?
ATTACHMENT: This is the SVG file link
You need to create a path from the outline stroke line.
this is your svg: https://gist.github.com/kherel/02f288ecd73f0c29a04b1f2d9c5db3e3
I've used figma

Can someone help me create a simple vertical bar chart using google charts?

I need help in building a dynamic chart. i have the following code but need to change it to a vertical bar graph instead of the horizontal one here is the sample http://chart.apis.google.com/chart?cht=bhs&chs=200x50&chco=4d89f9,c6d9fd&chxt=x,y&chxs=0|0&chd=t:80|20
You can change the "bhs" to "bvs" and change the scaling as needed:
Try this.