I want to build this view in flutter I used step_progress_indicator library for seek bar, Unable to add balloon indicator with text.
const Padding(
padding: EdgeInsets.symmetric(horizontal: 12.0),
child: CoreTag(
radius: 20,
borderColor: Colors.transparent,
backgroundColor: CoreColor.neutral100,
child:Row(
children: [
Text('$0K',style: CoreTextStyle.mRegular),
StepProgressIndicator(
totalSteps: 100,
currentStep: 32,
size: 8,
padding: 0,
unselectedColor: CoreColor.neutral200,
roundedEdges: Radius.circular(10),
selectedGradientColor: CoreColor.gradient08,
),
Text('$300K',style: CoreTextStyle.mRegular),
],
),
),
),
Core Tag class is just to container with radius and background color