Commit b51dbc3e authored by Jasa Digital's avatar Jasa Digital

fixed confirmation page overflow

parent 26179d16
...@@ -850,23 +850,38 @@ class _VariantOrderState extends State<VariantOrder> { ...@@ -850,23 +850,38 @@ class _VariantOrderState extends State<VariantOrder> {
// FontWeight.w300, // FontWeight.w300,
// ), // ),
// ), // ),
// Container(
// width: widget.widthRowForNote,
// child: Row(
// children: [
// defaultText(
// context,
// "${variantCaption[a]} : ",
// // maxLines: 2,
// // overFlow: TextOverflow.ellipsis,
// style: viewbillStyle(
// font: 12,
// fontWeight: FontWeight.w300,
// ),
// ),
// defaultText(
// context,
// variantName[a],
// // maxLines: 2,
// // overFlow: TextOverflow.ellipsis,
// style: viewbillStyle(
// font: 12,
// fontWeight: FontWeight.w300,
// ),
// ),
// ],
// ),
// ),
Container( Container(
width: widget.widthRowForNote, width: widget.widthRowForNote,
child: Row( child: defaultText(
children: [
defaultText(
context,
"${variantCaption[a]} : ",
// maxLines: 2,
// overFlow: TextOverflow.ellipsis,
style: viewbillStyle(
font: 12,
fontWeight: FontWeight.w300,
),
),
defaultText(
context, context,
variantName[a], "${variantCaption[a]} : ${variantName[a]}",
// maxLines: 2, // maxLines: 2,
// overFlow: TextOverflow.ellipsis, // overFlow: TextOverflow.ellipsis,
style: viewbillStyle( style: viewbillStyle(
...@@ -874,8 +889,6 @@ class _VariantOrderState extends State<VariantOrder> { ...@@ -874,8 +889,6 @@ class _VariantOrderState extends State<VariantOrder> {
fontWeight: FontWeight.w300, fontWeight: FontWeight.w300,
), ),
), ),
],
),
), ),
(widget.listOrders[indexOrder].orderDetail[indexOrderDetail] (widget.listOrders[indexOrder].orderDetail[indexOrderDetail]
.note != .note !=
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment