dropboxAndBoarder method
Implementation
Widget dropboxAndBoarder(){
var dropBox = getDropBoxWidget();
//decoration
var containerDecoration = Container( child: dropBox,
// color: Colors.green,
width: widget.width_frame ,
height: widget.height_frame,
alignment: Alignment.center,
decoration: chooseDecorationNormalOrError()
);
return containerDecoration;
}