|
|
@@ -71,6 +71,26 @@ class TrackPage extends BasePage<TrackController> {
|
|
|
return buildSheetContentView();
|
|
|
},
|
|
|
),
|
|
|
+ SafeArea(
|
|
|
+ child: Container(
|
|
|
+ width: double.infinity,
|
|
|
+ padding: EdgeInsets.only(right: 12.w),
|
|
|
+ child: Column(
|
|
|
+ crossAxisAlignment: CrossAxisAlignment.end,
|
|
|
+ children: [
|
|
|
+ Assets.images.iconAmapLogo.image(height: 24.w),
|
|
|
+ Container(
|
|
|
+ padding: EdgeInsets.all(1.w),
|
|
|
+ color: ColorName.white30,
|
|
|
+ child: Text(StringName.locationCo,
|
|
|
+ style:
|
|
|
+ TextStyle(fontSize: 11.sp, color: ColorName.black40)),
|
|
|
+ )
|
|
|
+ ],
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
],
|
|
|
);
|
|
|
}
|