Widget myWidget() { return Container( margin: const EdgeInsets.all(30.0), padding: const EdgeInsets.all(10.0), decoration: BoxDecoration( border: Border.all(), ), child: Text( "text", style: TextStyle(fontSize: 30.0), ), ); }