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
| @Composable | |
| fun AnimatedCircles(numberOfDots: Int = 3) { | |
| val animationSpec = remember { | |
| infiniteRepeatable<Float>( | |
| animation = tween(durationMillis = 1400, easing = LinearEasing), | |
| repeatMode = RepeatMode.Restart | |
| ) | |
| } | |
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
| data class DialogParams( | |
| @StyleRes val dialogTheme: Int, | |
| @StringRes val dialogTitle: Int, | |
| @StringRes val dialogMsg: Int, | |
| @StringRes val dialogPositiveButton:Int, | |
| @StringRes val dialogNegativeButton:Int, | |
| ) | |
| class PermissionManager( | |
| private val fragment: Fragment, |
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
| [ | |
| { | |
| "id": 1, | |
| "name": "Adana", | |
| "latitude": "37.0000", | |
| "longitude": "35.3213", | |
| "population": 2183167, | |
| "region": "Akdeniz" | |
| }, | |
| { |