-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Removed unused UI components and upgraded libraries
This commit removes unused UI components, such as BottomSheets, StaticBottomSheet, and CardListItem. Additionally, it introduces a new DraggableBottomSheetState and DraggableBottomSheet composables to provide draggable bottom sheet functionality. The commit also upgrades several libraries, including AGP to 8.7.3 and Gradle to 8.11.1, improving project maintenance and performance. Finally, code cleanup and enhancements are implemented in various UI components, such as FadingEdge, OutlinedButtons, MarqueeText, FilledButtons, UtilityCard, VariousChips, Scroll, HomePage, SelectableSurface, and AnimatedCounter, promoting code clarity and consistency.
- Loading branch information
Showing
26 changed files
with
349 additions
and
633 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
34 changes: 0 additions & 34 deletions
34
app/ui/src/main/java/com/bobbyesp/ui/components/bottomsheet/BottomSheets.kt
This file was deleted.
Oops, something went wrong.
87 changes: 0 additions & 87 deletions
87
app/ui/src/main/java/com/bobbyesp/ui/components/bottomsheet/StaticBottomSheet.kt
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
app/ui/src/main/java/com/bobbyesp/ui/components/bottomsheet/StaticBottomSheetState.kt
This file was deleted.
Oops, something went wrong.
This file contains 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
7 changes: 7 additions & 0 deletions
7
.../main/java/com/bobbyesp/ui/components/bottomsheet/draggable/DraggableBottomSheetAnchor.kt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.bobbyesp.ui.components.bottomsheet.draggable | ||
|
||
enum class DraggableBottomSheetAnchor { | ||
DISMISSED, | ||
COLLAPSED, | ||
EXPANDED | ||
} |
Oops, something went wrong.