# NeoTagView **Description:** NeoTagView displays a tag with text and an optional image, and can be styled for enabled or disabled states. --- **UI States:** ![image](https://hackmd.io/_uploads/rkY-WXtua.png) ## Parameters | Parameter Name | Type | Is Required | Description | Default Value | | -------------- | ------------------------ | ----------- | ------------------------------------------- | ------------------------- | | dataKey | String | Yes | Key to identify the tag data | - | | text | String? | No | Text displayed inside the tag | null | | imageUrn | String? | No | URN of the image to display | null | Defaults to a check image if not provided | | isEnabled | bool? | No | Flag to indicate if the tag is enabled or disabled | false | Changes background and text color | | padding | EdgeInsetsDirectional? | No | Padding around the tag | EdgeInsetsDirectional.zero| --- ## Example Response ```json { "type": "neo_tag_view", "args": { "dataKey": "tag_key", "text": "Example Tag", "imageUrn": "assets/images/tag_icon.png", "isEnabled": true, "padding": 10 } }