phase3: improve arg-bang handler (allow ! in chains, ; terminator). 574->440

This commit is contained in:
2026-07-26 10:41:02 +08:00
parent 36f36b815f
commit 154d696e70
50 changed files with 138 additions and 138 deletions

View File

@@ -774,7 +774,7 @@ class ShopState extends State<Shop>
addressColumn.children.add(new Text(
_business.address!.addressLine1! +
(_business.address!.addressLine2!.isNotEmpty
? ' ' + _business.address!.addressLine2
? ' ' + _business.address!.addressLine2!
: ''),
style: new TextStyle(fontSize: 13.0, color: const Color(0xFFEEEEEE)),
));
@@ -783,7 +783,7 @@ class ShopState extends State<Shop>
', ' +
_business.address!.state +
', ' +
_business.address!.zip,
_business.address!.zip!,
style: new TextStyle(fontSize: 13.0, color: const Color(0xFFEEEEEE)),
));