简体   繁体   中英

Is there a way to create this custom progress bar with docked action button in flutter?

I am trying to replicate the below image but I'm having a hard time doing so. I tried to use sleek_circular_slider, but it wasn't giving what I wanted. Any help is much appreciated Referenced Image:

在此处输入图像描述

Here is one Custom progress bar implementation. Have a look at the answer.

Create custom circular progress indicator in flutter with custom stroke cap

i think use of Positioned Widget can help to set Progress bar at dock

new Positioned(
       left: 30.0,
       top: 30.0,
       child: new Container(
         width: 100.0,
         height: 80.0,
         decoration: new BoxDecoration(color: Colors.red),
         child: new Text('hello'),
        )
      ),

And this will help to create round circle

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM