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

لینک گروه : https://t.me/flutterzone_group
Download Telegram
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
The Complete Flutter Bootcamp: Zero to Hero in Flutter Dart

Learn Flutter and Dart like a Professional! Mobile app development with Firebase & Flutter. Google Flutter and Dart app.

بوت کمپ کامل فلاتر: صفر تا صد فلاتر و دارت

فلاتر و دارت را مانند یک حرفه ای بیاموزید! توسعه‌ی برنامه موبایل با فلاتر و فایربیس.

#udemy
#udemy_course