Utilities for controlling the border of a widget.
Center( child: Row( children: [ Container( width: StiloWidth.w64, height: StiloHeight.h36, decoration: BoxDecoration( color: StiloColor.blue[500], border: StiloBorder.all4(StiloColor.green), ), ), Container( width: StiloWidth.w36, height: StiloHeight.h64, decoration: BoxDecoration( color: StiloColor.red[500], border: StiloBorder.bottom4(StiloColor.yellow), ), ), ], ), )