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
Media Size Property
// full screen width and height
double width = MediaQuery.of(context).size.width;
double height = MediaQuery.of(context).size.height;
// height without SafeArea
var padding = MediaQuery.of(context).padding;
double height1 = height - padding.top - padding.bottom;
// height without status bar
double height2 = height - padding.top;
// height without status and toolbar
double height3 = height - padding.top - kToolbarHeight;
#sinppet_code
#flutter_sinppet_code
// full screen width and height
double width = MediaQuery.of(context).size.width;
double height = MediaQuery.of(context).size.height;
// height without SafeArea
var padding = MediaQuery.of(context).padding;
double height1 = height - padding.top - padding.bottom;
// height without status bar
double height2 = height - padding.top;
// height without status and toolbar
double height3 = height - padding.top - kToolbarHeight;
#sinppet_code
#flutter_sinppet_code
Flutter Gems
در این سایت میتوانید بیش از 1000 پکیج فلاتر را در دسته بندی های مختلف پیدا کنید
https://fluttergems.dev
#tools
#flutter_tools
در این سایت میتوانید بیش از 1000 پکیج فلاتر را در دسته بندی های مختلف پیدا کنید
https://fluttergems.dev
#tools
#flutter_tools
fluttergems.dev
Flutter Gems - A Curated List of Top Dart and Flutter packages
Flutter Gems is a curated list of top Dart and Flutter packages that are categorized based on functionality. Flutter Gems is also a visual alternative to pub.dev
Master the GetX State Management in Flutter with GetStorage
Understand the concepts of managing state by building real application
با GetStorage بر استیت منیجمنمت Getx در فلاتر تسلط پیدا کنید!
با ایجاد یک برنامه واقعی مفاهیم مدیریت استیت را بفهمید
#udemy
#udemy_course
Understand the concepts of managing state by building real application
با GetStorage بر استیت منیجمنمت Getx در فلاتر تسلط پیدا کنید!
با ایجاد یک برنامه واقعی مفاهیم مدیریت استیت را بفهمید
#udemy
#udemy_course