Skip to main content
deleted 4 characters in body
Source Link
m4n0
  • 32.6k
  • 28
  • 81
  • 98

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), ), ); 
**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), ), ); 

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), ), ); 
Source Link
x86
  • 519
  • 1
  • 7
  • 17

**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), ), );