-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make task detail full screen and hide Also, given a new screen has been added, also the logic for showing or hiding the bottom nav has been set up. * Add new navigation layout Also, the libraries have been upgraded to their latest version * Fix bottom sheet safe drawing * Remove elevation and keep a plain design on agenda * Use border color to emphasize today's day Also, this would let us remain the day of the week and day of the month equal no matter if it's today or not, which is more pleasant in terms of visual alignment * Improve and add missing copies * Replace deprecated code * Open detail when tap on task card and add more icon Now, the actions will be opened only when tapping on the more icon. And, by default, the task detail screen will be opened when tapping anywhere on the task card Also, the height has been decreased to have a cleaner and more condensed UI * Fix scroll when tapping on today * Show calendar view when tap on calendar action icon * Remove unnecessary code * Add swipe to delete a task * Fix lint errors * Remove unused component * Fix TextField style * Fix edge to edge status and navigation styling
- Loading branch information
Showing
110 changed files
with
629 additions
and
1,911 deletions.
There are no files selected for viewing
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
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
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
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,15 @@ | ||
package com.costular.atomtasks.ui | ||
|
||
import com.ramcosta.composedestinations.annotation.ExternalNavGraph | ||
import com.ramcosta.composedestinations.annotation.NavHostGraph | ||
import com.ramcosta.composedestinations.generated.agenda.navgraphs.AgendaNavGraph | ||
import com.ramcosta.composedestinations.generated.detail.navgraphs.TaskDetailNavGraph | ||
import com.ramcosta.composedestinations.generated.settings.navgraphs.SettingsNavGraph | ||
|
||
@NavHostGraph | ||
annotation class MainGraph { | ||
@ExternalNavGraph<SettingsNavGraph> | ||
@ExternalNavGraph<TaskDetailNavGraph>() | ||
@ExternalNavGraph<AgendaNavGraph>(start = true) | ||
companion object Includes | ||
} |
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
47 changes: 28 additions & 19 deletions
47
app/src/main/java/com/costular/atomtasks/ui/home/AtomAppState.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
51 changes: 0 additions & 51 deletions
51
app/src/main/java/com/costular/atomtasks/ui/home/AtomBottomNavigation.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.