Conversation
This commit enhances the app's splash screen with a custom exit animation and introduces the ability to search for users within the app.
Changes:
- **Splash Screen Animation:**
- Implemented a custom exit animation for the splash screen that zooms out and rotates the icon, using `ObjectAnimator` and `OvershootInterpolator`.
- Added `Theme.App.Starting` style for splash screen configuration, including background color, icon background color, and animated icon.
- Added `logo_animator.xml` and `animated_logo.xml` to add animation in splash screen icon
- Added new `ic_launcher_foreground` in `mipmap` folders and `ic_launcher_background.xml`
- Added new `app_logo.xml` in `drawable` folder
- Updated `ic_launcher.xml` and `ic_launcher_round.xml` in `mipmap-anydpi-v26` to remove deprecated drawables.
- updated `AndroidManifest.xml` to use splash screen theme
- Updated `themes.xml` to add splash screen style and `themes.xml (v31)`
- updated all `ic_launcher` and `ic_launcher_round` to webp format in all `mipmap` folders
- Added `ic_launcher-playstore.png`
- **User Search Functionality:**
- Added `searchQuery`, `allUsers` state flows to `MainViewModel` to manage user search.
- Implemented `setSearchQuery` to update the search query and filter users.
- Implemented `filterUsers` to filter the `allUsers` based on the current search query, updating the `uiState` accordingly.
- Modified `HomeScreenTopBar` to include a search bar and search icon.
- Added search functionality and animated icon in `HomeScreenTopBar`
- Added `DockedSearchBar` to `HomeScreenTopBar` for user search.
- Added `clearSearchQuery` action in `HomeScreenTopBar`
- Added `BackHandler` in `HomeScreen` to clear the search field when user back press.
- Updated `UserList` to display a message when no users are found, including an error icon.
- Display `UserListFooter` only if there are users in the list
- Changed `bs` title in `UserDetailsItemCompanyRow` to `Business`
- Added `Icon` in case of error in `UserList`
- Updated `HomeScreenContent` to remove `contentAlignment = Alignment.Center`
- Added `TechExactlyApplication` to apply Koin configuration
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bonus Features
Enhances the app's splash screen with a custom exit animation and introduces the ability to search for users within the app.