Notes![what is notes.io? What is notes.io?](/theme/images/whatisnotesio.png)
![]() ![]() Notes - notes.io |
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
Stack(children: [
Container(
width: Get.width,
height: Get.height,
margin: const EdgeInsets.symmetric(
vertical: 15.0,
horizontal: 10.0,
),
child: SingleChildScrollView(
physics: const AlwaysScrollableScrollPhysics(),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
/* Track and Manage Description Text */
Flexible(
child: TextWidget(
txt: AppStrings.packagesTip,
colour: AppColor.textGrey,
fontSize: AppTextSize.smallTextSize,
),
),
const SizedBox(
height: 10,
),
/* Potential delay Widget */
if (GetAllPackageMixin.packageStatus.value.isNotEmpty &&
GetAllPackageMixin.packageStatus.value == "1")
Container(
padding: const EdgeInsets.all(
12.0,
),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(
12.0,
),
border: Border.all(
color: AppColor.themeColor.withOpacity(
.5,
),
),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.start,
children: [
TextWidget(
txt: AppStrings.potentialDelay,
),
TextWidget(
txt: AppStrings.facilityDelay,
fontWeight: FontWeight.w700,
),
TextWidget(
txt: AppStrings.weAreConfirmingTransfer),
],
),
Stack(
alignment: Alignment.center,
children: [
Transform.rotate(
angle: 12,
child: const Icon(
Icons.hexagon_outlined,
color: AppColor.grey45,
),
),
const Icon(
CupertinoIcons.exclamationmark,
size: 10,
color: AppColor.grey45,
),
],
),
],
),
),
const SizedBox(
height: 10.0,
),
/* Can't Find Your Package Text Button */
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () => AppClickHandler.onContactUsClick(
isDashboard: false, fromMyDeliveries: true),
child: TextWidget(
txt: AppStrings.cannotFindPackage +
" " +
AppStrings.contactus,
alignment: 0,
colour: AppColor.themeColor,
textDecoration: TextDecoration.underline,
fontSize: AppTextSize.smallTextSize,
fontWeight: FontWeight.w500,
),
),
const SizedBox(
height: 10.0,
),
/*Choose Warehouse Location Text*/
Container(
margin: const EdgeInsets.symmetric(
horizontal: 10.0,
),
child: TextWidget(
txt: AppStrings.chooseWareHouseLocation,
fontSize: AppTextSize.smallTextSize,
bold: true,
),
),
const SizedBox(
height: 5.0,
),
/* Warehouse Dropdown Widget */
Container(
height: 50.0,
width: Get.width,
alignment: Alignment.center,
padding: const EdgeInsets.symmetric(
horizontal: 8.0,
),
margin: const EdgeInsets.symmetric(
horizontal: 10.0,
),
decoration: BoxDecoration(
border: Border.all(
color: AppColor.black,
width: 1.0,
),
borderRadius: const BorderRadius.all(
Radius.circular(
10.0,
),
),
color: AppColor.grey10,
),
child: Obx(
() => DropdownButton(
isExpanded: true,
dropdownColor: AppColor.grey20,
icon: const Icon(
Icons.expand_more,
size: 25.0,
color: AppColor.black,
),
underline: const SizedBox(),
onChanged: (dynamic value) {
GetAllPackageMixin.setSelectedWareHouses =
value.storeName;
GetAllPackageMixin.getPackagesListApi(
storeId: value.storeId,
status: GetAllPackageMixin
.selectedPackageStatusTab
.value
.isNotEmpty
? GetAllPackageMixin
.selectedPackageStatusTab.value
: "");
},
hint: TextWidget(
fontSize: AppTextSize.smallTextSize,
colour: AppColor.grey50,
txt: GetAllPackageMixin
.getSelectedWareHouses.value,
),
//value: dashboardController.countryCode.value,
items: GetAllPackageMixin.getWareHousesList().map(
(items) {
return DropdownMenuItem<WarehousesDataModel>(
child: TextWidget(
txt: " ${items.storeName}",
fontSize: AppTextSize.smallTextSize,
colour: AppColor.black,
),
value: items,
);
},
).toList(),
),
),
),
/*Search Package Widget*/
Container(
height: 70.0,
margin: const EdgeInsets.symmetric(
horizontal: 10.0,
),
width: Get.width,
child: CommonSearchBar(
textEditingController: searchPackageController,
hintText: AppStrings.searchTracking,
imageName: AppImages.searchIcon,
searchValue: (value) {
DataHelper.logValue("==Search Value==", value);
dashboardController.searchPackageDetail.clear();
for (var element
in GetAllPackageMixin.getPackageList) {
if (element.trackingNumber!.contains(
searchPackageController.text
.toString()
.trim()) ||
element.id!.contains(searchPackageController
.text
.toString()
.trim())) {
dashboardController.searchPackageDetail
.add(element);
}
}
},
isSearchValue: true,
),
),
const SizedBox(
height: 5.0,
),
Container(
height: 50,
width: Get.width,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12),
color: AppColor.grey30,
),
child: _packageStatusTabsView(),
),
const SizedBox(
height: 5.0,
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () {
GetAllPackageMixin.selectAllPackagesFunction();
// GetAllPackageMixin.setSelectAllPackages = !GetAllPackageMixin.getSelectAllPackages.value;
},
child: TextWidget(
txt: AppStrings.selectAll,
colour: AppColor.themeColor,
bold: true,
),
),
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () {
GetAllPackageMixin.disSelectAllPackagesFunction();
},
child: Container(
height: 20.0,
width: 20.0,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(
5.0,
),
border: Border.all(
color: AppColor.black,
),
),
child: GetAllPackageMixin
.getSelectAllPackages.isTrue
? /*GetAllPackageMixin.getSelectAllPackages.value*/
Image.asset(
AppImages.checkIcon,
)
: const SizedBox(),
),
)
],
),
dashboardController.searchPackageDetail.isNotEmpty ||
GetAllPackageMixin.getPackageList.isNotEmpty
? _packageHistoryDetailWidget(
context: context,
list: dashboardController
.searchPackageDetail.isNotEmpty
? dashboardController.searchPackageDetail
: GetAllPackageMixin.getPackageList)
: Container(
height: Get.height / 2.5,
alignment: Alignment.topCenter,
child: _noActivePackageWidget(),
),
],
),
),
),
/* Positioned(
bottom: 80.0,
left: 0.0,
right: 0.0,
child: Container(
padding: const EdgeInsets.only(
left: 15.0, right: 15.0, bottom: 40, top: 10),
decoration: const BoxDecoration(color: AppColor.white),
child: AppButton(
height: 55.0,
width: Get.width,
fontSize: AppTextSize.idealTextSize,
onTap: () => AppClickHandler.onTabPackageHistoryButton(),
text: GetAllPackageMixin.getSelectAllPackages.isTrue
? AppStrings.shipNow
: AppStrings.packageHistory,
buttonColor: AppColor.black,
outlineColor: AppColor.black,
),
),
),*/
])
],
));
![]() |
Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 14 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team