searchStaysAndTravelButton method
Implementation
InkWell searchStaysAndTravelButton() {
return InkWell(
onTap: () {
goto(Routes.TOP_FLIGHTS);
} ,
child: Container(
width: double.infinity,
height: 50,
alignment: Alignment.center,
decoration: BoxDecoration(
color: ColorHelper.primaryColor1,
borderRadius: BorderRadius.circular(8.dp),
),
child: const Text(
'Search Stays & More',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.w500,
color: ColorHelper.white,
),
),
),
);
}