showLogo method

Widget showLogo()

Displays the logo.

Implementation

Widget showLogo() {
  return Hero(
    tag: 'hero',
    child: Container(
      padding: const EdgeInsets.fromLTRB(0.0, 0.0, 0.0, 0.0),
      height: MediaQuery.of(context).size.height * 0.4,
      child: CircleAvatar(
        backgroundColor: Colors.transparent,
        radius: 140.0,
        child: Image.asset('images/ic_banner.png'),
      ),
    ),
  );
}