Skip to content

Commit

Permalink
Add icons
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedRejeb committed Mar 12, 2023
1 parent 53520e9 commit 096126b
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 7 deletions.
Binary file added icons/dna.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/electric.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/location.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/pokeball.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import androidx.compose.ui.draw.scale
import androidx.compose.ui.draw.shadow
import androidx.compose.ui.graphics.Brush
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.dp
import com.mocoding.pokedex.ui.main.state.CategoryState
import com.mocoding.pokedex.ui.theme.Black
Expand All @@ -43,7 +44,9 @@ internal fun CategoryButton(
Text(
text = categoryState.title,
color = Color.White,
style = MaterialTheme.typography.titleMedium,
style = MaterialTheme.typography.titleMedium.copy(
fontWeight = FontWeight.Bold
),
)

Spacer(Modifier.weight(1f))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@ internal fun MainContent(
modifier = modifier
.verticalScroll(rememberScrollState())
) {
// LaunchedEffect(Unit) {
// while (true) {
// onEvent(MainStore.Intent.InputPokemonSearch((1..1000).random().toString()))
// delay(10)
// }
// }

Text(
text = "What Pokemon are you looking for ?",
Expand Down

0 comments on commit 096126b

Please sign in to comment.