merge material 3

This commit is contained in:
tzw
2024-01-25 17:40:35 +06:30
parent 18053cbe3c
commit 991ecd7ae6
70 changed files with 572 additions and 1377 deletions

View File

@@ -15,7 +15,11 @@ class DefaultDeliveryAddress extends StatelessWidget {
final IconData? iconData;
const DefaultDeliveryAddress(
{Key? key, this.deliveryAddress, this.onTap, this.labelKey, this.iconData})
{Key? key,
this.deliveryAddress,
this.onTap,
this.labelKey,
this.iconData})
: super(key: key);
@override
@@ -38,6 +42,9 @@ class DefaultDeliveryAddress extends StatelessWidget {
: GestureDetector(
onTap: () => onTap!(),
child: Chip(
shape: const StadiumBorder(
side: BorderSide(color: Colors.transparent)),
backgroundColor: Colors.grey.withOpacity(0.3),
label: LocalText(
context, "delivery_address.change_address",
color: primaryColor)),