Flutter Zone | فلاتر و دارت
739 subscribers
522 photos
312 videos
1.07K files
817 links
ناحیه‌ی فلاتر
برای فلاتر
اموزش های فلاتر و دارت از یودمی

لینک گروه : https://t.me/flutterzone_group
Download Telegram
Deep Learning Course with Flutter & Python - Build 6 AI Apps

Build 6 Cutting-Edge Deep Learning Mobile Applications with Flutter & Python!

#udemy
#udemy_course
جونم VPS خوراکه دانلود و آپلوده 😄
Shadow Extension for Widgets

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
Master the GetX State Management in Flutter with GetStorage

Understand the concepts of managing state by building real application

با GetStorage بر استیت منیجمنمت Getx در فلاتر تسلط پیدا کنید!

با ایجاد یک برنامه واقعی مفاهیم مدیریت استیت را بفهمید


#udemy
#udemy_course