Widget build(BuildContextcontext){
return Container(
? ? decoration:BoxDecoration(
? ? ? ? ? gradient:LinearGradient(
? ? ? ? ? ? ? ? ? ?colors:[Color(0xFFfbab66),Color(0xFFf7418c)],
? ? ? ? ? ? ? ? ? ?begin:Alignment.topCenter,
? ? ? ? ? ? ? ? ? ?end:Alignment.bottomCenter,
? ? ? ? ? )
? ? ? ?),
);
}