buildLogo method

Widget buildLogo()

Implementation

Widget buildLogo() {
  return Column(
    mainAxisSize: MainAxisSize.max,
    mainAxisAlignment: MainAxisAlignment.end,
    children: [
      AppImageAssets(
        ThemeService().isThemeFromBox()
            ? 'assets/images/simpliworks_logo_white.png'
            : 'assets/images/simpliworks_logo.png',
        width: 300.0,
        height: 100,
        fit: BoxFit.contain, // or any fit you need
      ),
      const SizedBox(height: 50.0)
    ],
  );
}