-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
255 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>NSPrivacyAccessedAPITypes</key> | ||
<array> | ||
<dict> | ||
<key>NSPrivacyAccessedAPIType</key> | ||
<string>NSPrivacyAccessedAPICategoryUserDefaults</string> | ||
<key>NSPrivacyAccessedAPITypeReasons</key> | ||
<array> | ||
<string>CA92.1</string> | ||
</array> | ||
</dict> | ||
<dict> | ||
<key>NSPrivacyAccessedAPIType</key> | ||
<string>NSPrivacyAccessedAPICategorySystemBootTime</string> | ||
<key>NSPrivacyAccessedAPITypeReasons</key> | ||
<array> | ||
<string>35F9.1</string> | ||
</array> | ||
</dict> | ||
<dict> | ||
<key>NSPrivacyAccessedAPIType</key> | ||
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string> | ||
<key>NSPrivacyAccessedAPITypeReasons</key> | ||
<array> | ||
<string>C617.1</string> | ||
</array> | ||
</dict> | ||
<dict> | ||
<key>NSPrivacyAccessedAPIType</key> | ||
<string>NSPrivacyAccessedAPICategoryDiskSpace</string> | ||
<key>NSPrivacyAccessedAPITypeReasons</key> | ||
<array> | ||
<string>85F4.1</string> | ||
</array> | ||
</dict> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
110 changes: 110 additions & 0 deletions
110
LabelStoreMax/lib/resources/widgets/checkout_customer_note_widget.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter_app/app/models/checkout_session.dart'; | ||
import 'package:flutter_app/resources/pages/checkout_confirmation_page.dart'; | ||
import 'package:flutter_app/resources/widgets/buttons.dart'; | ||
import 'package:nylo_framework/nylo_framework.dart'; | ||
|
||
class CheckoutCustomerNote extends StatelessWidget { | ||
CheckoutCustomerNote({super.key, required this.checkoutSession}) { | ||
textEditingController.text = checkoutSession.customerNote ?? ""; | ||
} | ||
|
||
final CheckoutSession checkoutSession; | ||
final TextEditingController textEditingController = TextEditingController(); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
bool hasCustomerNote = checkoutSession.customerNote != null; | ||
return Container( | ||
height: 50, | ||
width: double.infinity, | ||
padding: EdgeInsets.symmetric(vertical: 5), | ||
child: InkWell( | ||
onTap: () => _actionCustomerNote(context), | ||
child: Row( | ||
crossAxisAlignment: CrossAxisAlignment.center, | ||
mainAxisAlignment: MainAxisAlignment.spaceBetween, | ||
children: [ | ||
Expanded( | ||
child: Text( | ||
hasCustomerNote | ||
? "${'Order Note'.tr()}: ${checkoutSession.customerNote ?? ""}" | ||
: 'Order Note'.tr(), | ||
style: Theme.of(context).textTheme.titleSmall, | ||
overflow: TextOverflow.ellipsis, | ||
maxLines: 2, | ||
), | ||
), | ||
if (hasCustomerNote == true) | ||
IconButton( | ||
padding: EdgeInsets.symmetric(vertical: 3), | ||
onPressed: _removeCustomerNote, | ||
icon: Icon( | ||
Icons.close, | ||
size: 19, | ||
)), | ||
], | ||
).paddingSymmetric(horizontal: 16), | ||
), | ||
); | ||
} | ||
|
||
_actionCustomerNote(BuildContext context) { | ||
// open modal to add customer note | ||
showModalBottomSheet<void>( | ||
isScrollControlled: true, | ||
context: context, | ||
shape: RoundedRectangleBorder( | ||
borderRadius: BorderRadius.only( | ||
topLeft: Radius.circular(30.0), | ||
topRight: Radius.circular(30.0), | ||
), | ||
), | ||
builder: (BuildContext context) { | ||
return SafeArea( | ||
minimum: EdgeInsets.symmetric(horizontal: 16, vertical: 16), | ||
child: Padding( | ||
padding: MediaQuery.of(context).viewInsets, | ||
child: Container( | ||
child: Wrap( | ||
spacing: 20, | ||
children: <Widget>[ | ||
TextFormField( | ||
autofocus: true, | ||
maxLines: 3, | ||
controller: textEditingController, | ||
decoration: InputDecoration( | ||
labelText: "Order Note".tr(), | ||
hintText: "Enter order note".tr(), | ||
), | ||
onChanged: (value) { | ||
CheckoutSession.getInstance.customerNote = value; | ||
}, | ||
), | ||
Padding(padding: EdgeInsets.only(top: 16)), | ||
PrimaryButton(title: "Save Note".tr(), action: () { | ||
if (CheckoutSession.getInstance.customerNote == "") { | ||
CheckoutSession.getInstance.customerNote = null; | ||
} | ||
bool isSuccessful = NyValidator.isSuccessful(rules: { | ||
"Order Note".tr(): [CheckoutSession.getInstance.customerNote ?? "", "max:100"] | ||
}); | ||
if (isSuccessful == false) { | ||
showToastNotification(context, title: "Error".tr(), description: "Order note must be less than 100 characters".tr(), style: ToastNotificationStyleType.DANGER, icon: Icons.error); | ||
return; | ||
} | ||
StateAction.refreshPage(CheckoutConfirmationPage.path, setState: () {}); | ||
Navigator.pop(context); | ||
}), | ||
], | ||
),),), | ||
); | ||
}, | ||
); | ||
} | ||
|
||
_removeCustomerNote() { | ||
CheckoutSession.getInstance.customerNote = null; | ||
StateAction.refreshPage(CheckoutConfirmationPage.path, setState: () {}); | ||
} | ||
} |
Oops, something went wrong.