|
|
@@ -69,20 +69,25 @@ class MainPage extends BasePage<MainController> {
|
|
|
}
|
|
|
|
|
|
Widget buildMapLogoView() {
|
|
|
- return Obx(() {
|
|
|
- return Positioned(
|
|
|
- left: 12.w,
|
|
|
- bottom: 130.w + controller.sheetProgress * 146.w,
|
|
|
- child: Column(
|
|
|
- crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
- children: [
|
|
|
- Assets.images.iconAmapLogo.image(height: 20.w),
|
|
|
- Text(StringName.locationCo,
|
|
|
- style: TextStyle(
|
|
|
- fontSize: 9.sp, color: '#666666'.color, height: 1))
|
|
|
- ],
|
|
|
- ));
|
|
|
- });
|
|
|
+ return Visibility(
|
|
|
+ visible: Platform.isAndroid,
|
|
|
+ child: Obx(() {
|
|
|
+ return Positioned(
|
|
|
+ left: 12.w,
|
|
|
+ bottom: 130.w +
|
|
|
+ (controller.lastSelectedGoods == null ? 0 : 60.w) +
|
|
|
+ controller.sheetProgress * 146.w,
|
|
|
+ child: Column(
|
|
|
+ crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
+ children: [
|
|
|
+ Assets.images.iconAmapLogo.image(height: 20.w),
|
|
|
+ Text(StringName.locationCo,
|
|
|
+ style: TextStyle(
|
|
|
+ fontSize: 9.sp, color: '#666666'.color, height: 1))
|
|
|
+ ],
|
|
|
+ ));
|
|
|
+ }),
|
|
|
+ );
|
|
|
}
|
|
|
|
|
|
Widget buildMapView() {
|