flutterLogo method
Implementation
Widget flutterLogo() {
return Padding(
child: Column(
children: <Widget>[
Center(
child: Text('Made With'.toUpperCase(),
style: TextStyle(
color: Colors.grey,
fontWeight: FontWeight.w500,
letterSpacing: 1)),
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Center(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
FlutterLogo(
size: 40,
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
'Flutter',
),
)
],
),
),
),
],
),
padding: EdgeInsets.only(top: 30.0),
);
}