Wrap that widget with the container
**Wrap that widget with the container** Container( margin: const EdgeInsets.all(30.0), padding: const EdgeInsets.all(10.0), decoration: BoxDecoration(border: Border.all( color: Colors.black, width: 1, ), ), child: Text( "text", style: TextStyle(fontSize: 30.0), ), );