我的智能体

This commit is contained in:
weber
2025-08-05 17:01:23 +08:00
parent dc9c013383
commit 993604bfc1
4 changed files with 131 additions and 35 deletions

View File

@@ -60,8 +60,7 @@ fun AgentCard(
contentDescription = "",
modifier = Modifier
.size(40.dp)
.clip(RoundedCornerShape(40.dp))
,
.clip(RoundedCornerShape(40.dp)),
contentScale = ContentScale.Crop
)
Column(
@@ -80,12 +79,9 @@ fun AgentCard(
textAlign = TextAlign.Start,
text = agentEntity.title,
color = AppColors.text,
fontSize = 16.sp, style = TextStyle(fontWeight = FontWeight.Bold)
fontSize = 16.sp,
style = TextStyle(fontWeight = FontWeight.Bold)
)
}
Spacer(modifier = Modifier.width(16.dp))
}
Row(
modifier = Modifier
@@ -103,6 +99,7 @@ fun AgentCard(
//MomentPostLocation(momentEntity.location)
}
}
}
}
}
}