尺寸修改

This commit is contained in:
2025-11-14 17:53:40 +08:00
parent 2aeff5e8a6
commit 3a7f69d525
4 changed files with 74 additions and 42 deletions

View File

@@ -27,11 +27,11 @@ class CarInfoPage extends GetView<CarInfoController> {
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
_buildDriverInfoCard(),
const SizedBox(height: 12),
const SizedBox(height: 5),
_buildCarBindingCard(),
const SizedBox(height: 12),
const SizedBox(height: 5),
_buildCertificatesCard(),
const SizedBox(height: 12),
const SizedBox(height: 5),
_buildTipsCard(),
],
),
@@ -45,8 +45,8 @@ class CarInfoPage extends GetView<CarInfoController> {
/// 1. 构建顶部的司机信息卡片(包含蓝色背景)
Widget _buildDriverInfoCard() {
return Card(
elevation: 4,
margin: EdgeInsets.zero, // Card 在蓝色背景内,不需要外边距
elevation: 2,
margin: EdgeInsets.zero,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
child: Column(
children: [
@@ -55,23 +55,23 @@ class CarInfoPage extends GetView<CarInfoController> {
child: Row(
children: [
const CircleAvatar(
radius: 28,
radius: 20,
backgroundColor: Colors.blue,
child: Icon(Icons.person, color: Colors.white, size: 36),
child: Icon(Icons.person, color: Colors.white, size: 34),
),
const SizedBox(width: 12),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'王小龙',
style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
Text(
"${StorageService.to.name}",
style: TextStyle(fontSize: 14, fontWeight: FontWeight.bold),
),
const SizedBox(height: 4),
const Text(
'15888332828',
style: TextStyle(color: Colors.grey, fontSize: 14),
Text(
"${StorageService.to.phone}",
style: TextStyle(color: Colors.grey, fontSize: 11),
),
],
),