temp method
dynamic
temp()
Implementation
temp() => Column(
children: [
Positioned(
left: coordinateY.toDouble() - 28, // Adjust for widget width/height
top: coordinateX.toDouble() - 20, // Adjust for widget width/height
child: Image.asset("assets/images/ic_location_marker.png", height: 60, width: 60),
),
// Positioned.fill(
// child: Container(
// alignment: Alignment.center,
// margin: const EdgeInsets.only(bottom: 60),
// child: Obx(() => controller.selectedAddress.value != null
// ? markerInfo(controller)
// : const LoaderWidget())),
// ),
Positioned(
left: coordinateY.toDouble(), // Adjust for widget width/height
top: coordinateX.toDouble(), // Adjust for widget width/height
child: const UFUText(text: ".",),
),
],
);