merge material 3
This commit is contained in:
@@ -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)),
|
||||
|
||||
Reference in New Issue
Block a user