|  | @@ -7,6 +7,7 @@ import androidx.compose.foundation.ExperimentalFoundationApi
 | 
	
		
			
				|  |  |  import androidx.compose.foundation.LocalOverscrollConfiguration
 | 
	
		
			
				|  |  |  import androidx.compose.foundation.background
 | 
	
		
			
				|  |  |  import androidx.compose.foundation.gestures.detectTapGestures
 | 
	
		
			
				|  |  | +import androidx.compose.foundation.interaction.MutableInteractionSource
 | 
	
		
			
				|  |  |  import androidx.compose.foundation.layout.Arrangement
 | 
	
		
			
				|  |  |  import androidx.compose.foundation.layout.Box
 | 
	
		
			
				|  |  |  import androidx.compose.foundation.layout.BoxScope
 | 
	
	
		
			
				|  | @@ -26,6 +27,7 @@ import androidx.compose.foundation.pager.HorizontalPager
 | 
	
		
			
				|  |  |  import androidx.compose.foundation.pager.rememberPagerState
 | 
	
		
			
				|  |  |  import androidx.compose.foundation.selection.selectable
 | 
	
		
			
				|  |  |  import androidx.compose.foundation.shape.RoundedCornerShape
 | 
	
		
			
				|  |  | +import androidx.compose.material.Divider
 | 
	
		
			
				|  |  |  import androidx.compose.material.icons.Icons
 | 
	
		
			
				|  |  |  import androidx.compose.material.icons.automirrored.filled.ArrowBack
 | 
	
		
			
				|  |  |  import androidx.compose.material3.DockedSearchBar
 | 
	
	
		
			
				|  | @@ -478,6 +480,13 @@ fun ColumnScope.ShowAllLocationsList(
 | 
	
		
			
				|  |  |      ScrollableTabRow(
 | 
	
		
			
				|  |  |          selectedTabIndex = selectedIndex,
 | 
	
		
			
				|  |  |          containerColor = Color.Transparent,
 | 
	
		
			
				|  |  | +        divider = {
 | 
	
		
			
				|  |  | +            Divider(
 | 
	
		
			
				|  |  | +                color = colorResource(id = R.color.gray_icon),
 | 
	
		
			
				|  |  | +                thickness = 1.dp,
 | 
	
		
			
				|  |  | +                modifier = Modifier.alpha(0.6F)
 | 
	
		
			
				|  |  | +            )
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  |          modifier = Modifier
 | 
	
		
			
				|  |  |              .fillMaxWidth()
 | 
	
		
			
				|  |  |              .padding(top = 0.dp)
 | 
	
	
		
			
				|  | @@ -549,7 +558,6 @@ fun ColumnScope.ShowAllLocationsList(
 | 
	
		
			
				|  |  |                      )
 | 
	
		
			
				|  |  |                  },
 | 
	
		
			
				|  |  |                  modifier = Modifier
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |                      .background(
 | 
	
		
			
				|  |  |  //                        color = color.value,
 | 
	
		
			
				|  |  |                          color = Color.Transparent,
 |