在颤振中同时获取3个输入值时出现问题

现在我通过这种方法获取3个输入(A,B和C)

Slider(
  value: A,
  min: 0,
  max: 100,
  divisions: 100,
  label: 'A',
  onChanged: (value) {
    setState(
      () {
        A = value.toInt();
      },
    );
  },
),

I used different slider for every input but my task is to take 3 inputs in a pie-chart(In which user will be able to set 3 values by dragging marker/courser )and the combination of all 3 inputs should be 100 but i didn't found any widget like this please suggest me any solution.enter image description here