gitButton method

Widget gitButton ()

Implementation

Widget gitButton() {
  return Column(children: <Widget>[
    Center(
      child: Text('This app is open source!'.toUpperCase(),
          style: TextStyle(
              color: Colors.grey,
              fontWeight: FontWeight.w500,
              letterSpacing: 1)),
    ),
    Padding(
      padding: EdgeInsets.only(top: 4),
      child: Container(
        alignment: Alignment.center,
        child: OutlineButton.icon(
          icon: Icon(FontAwesomeIcons.link),
          label: Text('GITHUB',
              style: TextStyle(
                  fontWeight: FontWeight.w500,
                  letterSpacing: 1,
                  color: Colors.grey)),
          shape:
              RoundedRectangleBorder(borderRadius: BorderRadius.circular(16)),
          onPressed: openGitHub,
        ),
      ),
    ),
  ]);
}