Skip to content

Commit

Permalink
remove unused imports, logs
Browse files Browse the repository at this point in the history
  • Loading branch information
dawitfamanu committed Dec 2, 2023
1 parent d52f52c commit fc39b26
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.goliath.emojihub.views.components

import android.util.Log
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
Expand Down Expand Up @@ -29,7 +28,6 @@ import androidx.compose.runtime.rememberCoroutineScope
import androidx.compose.runtime.setValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.dp
Expand All @@ -41,9 +39,7 @@ import com.goliath.emojihub.NavigationDestination
import com.goliath.emojihub.ui.theme.Color.EmojiHubDividerColor
import com.goliath.emojihub.extensions.toEmoji
import com.goliath.emojihub.models.Emoji
import com.goliath.emojihub.ui.theme.Color.EmojiHubGray
import com.goliath.emojihub.ui.theme.Color.LightGray
import com.goliath.emojihub.ui.theme.Color.Transparent
import kotlinx.coroutines.launch
import com.goliath.emojihub.ui.theme.Color.White
import com.goliath.emojihub.viewmodels.EmojiViewModel
Expand Down Expand Up @@ -107,7 +103,6 @@ fun CustomBottomSheet (
isSelected = emojiClassFilters[emojiClass] == selectedEmojiClass,
onSelected = {
selectedEmojiClass = emojiClassFilters[emojiClass]
Log.d("EmojiClass", "selectedEmojiClass: $selectedEmojiClass")
}
)
}
Expand All @@ -125,8 +120,6 @@ fun CustomBottomSheet (
) {
OutlinedButton(
onClick = {
Log.d("addReaction", "myCreatedEmoji count: ${myCreatedEmojiList.itemCount}")
// TODO: fetch user's emojis and display
displayMyCreatedEmojis = true
},
modifier = Modifier
Expand All @@ -146,8 +139,6 @@ fun CustomBottomSheet (

OutlinedButton(
onClick = {
// TODO: fetch user's saved emojis and display
Log.d("addReaction", "mySavedEmoji count: ${mySavedEmojiList.itemCount}")
displayMyCreatedEmojis = false
},
modifier = Modifier
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
package com.goliath.emojihub.views.components

import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.LazyListScope
import androidx.compose.foundation.lazy.LazyRow
import androidx.compose.foundation.lazy.rememberLazyListState
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.material.ButtonDefaults
import androidx.compose.material.Text
import androidx.compose.material.TextButton
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.dp
import com.goliath.emojihub.ui.theme.Color
Expand Down

0 comments on commit fc39b26

Please sign in to comment.