hideBottomWithAnimation method

Future<void> hideBottomWithAnimation()

Implementation

Future<void> hideBottomWithAnimation() async {
  // بدء أنيميشن الإخفاء
  // Start hide animation
  await bottomController.reverse();
  // تحديث حالة الظهور بعد انتهاء الأنيميشن
  // Update visibility state after animation completes
  isBottomVisible.value = false;
  log('Bottom slider hidden with animation', name: 'SliderController');
}