showLogo method

Widget showLogo()

Displays the logo.

Implementation

Widget showLogo() {
  return Hero(
    tag: 'hero',
    child: Padding(
      padding: const EdgeInsets.fromLTRB(0.0, 0.0, 0.0, 0.0),
      child: CircleAvatar(
        backgroundColor: Colors.transparent,
        radius: 140.0,
        child: Image.asset('images/ic_banner.png'),
      ),
    ),
  );
}