This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import androidx.compose.animation.* | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.ui.Modifier | |
| import androidx.compose.ui.layout.Layout | |
| import androidx.compose.ui.unit.IntOffset | |
| import androidx.compose.ui.window.Popup | |
| @Composable | |
| fun AniJinPopup( | |
| expanded: Boolean, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | private const val SCROLL_DX = 24f | |
| private const val REQUIRED_CARD_COUNT = 8 | |
| private class AutoScrollItem<T>( | |
| val id: String = UUID.randomUUID().toString(), | |
| val data: T | |
| ) | |
| @Composable | |
| fun <T : Any> AutoScrollingLazyRow( | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import androidx.compose.foundation.ExperimentalFoundationApi | |
| import androidx.compose.foundation.gestures.snapping.rememberSnapFlingBehavior | |
| import androidx.compose.foundation.layout.Box | |
| import androidx.compose.foundation.layout.fillMaxWidth | |
| import androidx.compose.foundation.layout.height | |
| import androidx.compose.foundation.layout.offset | |
| import androidx.compose.foundation.lazy.LazyColumn | |
| import androidx.compose.foundation.lazy.rememberLazyListState | |
| import androidx.compose.material3.Divider | |
| import androidx.compose.material3.LocalContentColor | 
OlderNewer