Skip to content

Commit

Permalink
Replaced wildcard imports with the proper paths without abbreviations
Browse files Browse the repository at this point in the history
  • Loading branch information
soleil-colza committed Jun 25, 2024
1 parent 998c6b9 commit 31e8a8f
Showing 1 changed file with 16 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
package visualeffects

import androidx.compose.animation.core.*
import androidx.compose.animation.core.FastOutSlowInEasing
import androidx.compose.animation.core.LinearEasing
import androidx.compose.animation.core.RepeatMode
import androidx.compose.animation.core.animateFloat
import androidx.compose.animation.core.infiniteRepeatable
import androidx.compose.animation.core.rememberInfiniteTransition
import androidx.compose.animation.core.tween
import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.BoxWithConstraints
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.offset
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
Expand All @@ -20,8 +32,9 @@ import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.DpOffset
import androidx.compose.ui.unit.IntOffset
import androidx.compose.ui.unit.dp
import graphics_2d.shared.generated.resources.*
import graphics_2d.shared.generated.resources.Res
import org.jetbrains.compose.resources.painterResource
import kotlin.random.Random.Default.nextFloat as random

@Composable
fun Words() {
Expand Down

0 comments on commit 31e8a8f

Please sign in to comment.