createLogoAndName method

List<Widget> createLogoAndName()

Implementation

List<Widget> createLogoAndName() {
  return [
    // const Text(
    //   //appName,
    //   style: TextStyle(
    //       fontWeight: FontWeight.bold, color: Colors.black, fontSize: 60),
    // ),
    const SizedBox(width: 16),
    Image.asset("assets/images/barbell.png", width: 64),
  ];
}