Deep Learning Course with Flutter & Python - Build 6 AI Apps
Build 6 Cutting-Edge Deep Learning Mobile Applications with Flutter & Python!
#udemy
#udemy_course
Build 6 Cutting-Edge Deep Learning Mobile Applications with Flutter & Python!
#udemy
#udemy_course
Shadow Extension for Widgets
#flutter_sinppet_code
extension ShadowMaker on Widget {
shadow({Color backColor,double blurRadius,double borderRadius,Color shadowColor}) {
return Container(
clipBehavior: Clip.antiAliasWithSaveLayer,
margin: EdgeInsets.all(10),
decoration: BoxDecoration(
color:backColor?? Colors.amber.shade800,
borderRadius: BorderRadius.circular(borderRadius??5),
boxShadow: [
BoxShadow(
color: shadowColor?? Colors.black45,
offset: Offset(0,5),
blurRadius: blurRadius??1
)
]
),
child: this,
);
}
}
#sinppet_code#flutter_sinppet_code