I want to make this kind of design with these white circles as a raised button.
you can use decoration like this :
Container( width: 60, height: 60, child: Icon(CustomIcons.option, size: 20,), decoration: BoxDecoration( shape: BoxShape.circle, color: Color(0xFFe0f2f1)), )
Now you have circle shape and Icon on it.