This commit is contained in:
lollipopkit
2023-08-20 22:40:39 +08:00
parent d5f8cf6cf0
commit d663106f9f
6 changed files with 90 additions and 69 deletions

View File

@@ -23,19 +23,20 @@ class TagBtn extends StatelessWidget {
child: Material(
color: primaryColor.withAlpha(20),
child: InkWell(
onTap: onTap,
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 11, vertical: 2.7),
child: Text(
content,
style: TextStyle(
color: isEnable ? null : Colors.grey,
fontSize: 13,
onTap: onTap,
child: Padding(
padding:
const EdgeInsets.symmetric(horizontal: 11, vertical: 2.7),
child: Text(
content,
style: TextStyle(
color: isEnable ? null : Colors.grey,
fontSize: 13,
),
),
),
),
),
),
),
);
}