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
چند ابزار خوب برای تبدیل جیسون به دارت
ابزار های انلاین
https://app.quicktype.io
https://jsonformatter.org/json-to-dart
https://jsontodart.com
https://javiercbk.github.io/json_to_dart/
پلاگین
اندروید استودیو :
https://plugins.jetbrains.com/plugin/12562-jsontodart-json-to-dart-
ویژوال کد :
https://marketplace.visualstudio.com/items?itemName=hirantha.json-to-dart
#tools
#easy_tools
ابزار های انلاین
https://app.quicktype.io
https://jsonformatter.org/json-to-dart
https://jsontodart.com
https://javiercbk.github.io/json_to_dart/
پلاگین
اندروید استودیو :
https://plugins.jetbrains.com/plugin/12562-jsontodart-json-to-dart-
ویژوال کد :
https://marketplace.visualstudio.com/items?itemName=hirantha.json-to-dart
#tools
#easy_tools
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
Learn Flutter and Dart like a Professional! Mobile app development with Firebase & Flutter. Google Flutter and Dart app.
بوت کمپ کامل فلاتر: صفر تا صد فلاتر و دارت
فلاتر و دارت را مانند یک حرفه ای بیاموزید! توسعهی برنامه موبایل با فلاتر و فایربیس.
#udemy
#udemy_course