buildWebFooter method
Implementation
Widget buildWebFooter(BuildContext context) {
return Container(
padding: const EdgeInsets.symmetric(horizontal: 10.0, vertical: 5.0),
color: AppColors.darkDrawerBackgroundColor,
height: 40.0,
child: Stack(
alignment: Alignment.centerRight,
children: [
Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
children: [buildPoweredByWeServeCode(context)],
),
InkWell(
onTap: () {
AppUtils.openLink('https://www.weservecodes.com');
},
child: AppImageAssets(
Assets.images.weserveLogoWhite.path,
height: 30.0,
width: 70.0,
fit: BoxFit.contain, // or any fit you need
),
),
],
),
);
}