feat: Add acccount screen#583
Open
LunarX wants to merge 35 commits intoupdate-onboarding-with-cross-app-loginfrom
Open
feat: Add acccount screen#583LunarX wants to merge 35 commits intoupdate-onboarding-with-cross-app-loginfrom
LunarX wants to merge 35 commits intoupdate-onboarding-with-cross-app-loginfrom
Conversation
|
This PR/issue depends on:
|
This was referenced Feb 13, 2026
tevincent
requested changes
Feb 16, 2026
app/src/main/java/com/infomaniak/swisstransfer/ui/screen/main/settings/MyAccountScreen.kt
Outdated
Show resolved
Hide resolved
...src/main/java/com/infomaniak/swisstransfer/ui/screen/main/settings/MyAccountScreenWrapper.kt
Outdated
Show resolved
Hide resolved
...src/main/java/com/infomaniak/swisstransfer/ui/screen/main/settings/MyAccountScreenWrapper.kt
Show resolved
Hide resolved
...src/main/java/com/infomaniak/swisstransfer/ui/screen/main/settings/MyAccountScreenWrapper.kt
Outdated
Show resolved
Hide resolved
| ) { | ||
| TwoPaneScaffold<SettingsOptionScreens>( | ||
| listPane = { ListPane(navigator = this, theme, validityPeriod, downloadLimit, emailLanguage) }, | ||
| listPane = { ListPane(navigator = this, onDisconnectCurrentUser) }, |
Contributor
There was a problem hiding this comment.
Not related to this line but you have twice "Settings" in the top app bar when you navigate to the settings screen, on tablet.
Contributor
Author
There was a problem hiding this comment.
If I'm not mistaken it should be fixed now
app/src/main/java/com/infomaniak/swisstransfer/ui/screen/main/settings/MyAccountViewModel.kt
Show resolved
Hide resolved
Contributor
bd13f5e to
059c65a
Compare
Contributor
Author
|
Yeah pretty sure the conflict overload you got is an Android Studio issue since the last update |
…ly managing the backstack
…'s an account or not
…he current user in MyAccountScreen
a2255e3 to
a2a5d22
Compare
|
tevincent
approved these changes
Feb 18, 2026
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.




Replace the settings screen with the new account screen. Some of the menu actions are not defined yet but they will come in the next PR.
The settings screen is now accessible after the my account screen. It required to adapt and tweak a bit of logic related to the large window layout navigation.
Exposes a LocalUser to hold the connected user and easily and efficiently access it throughout the app.
Depends on #582