Skip to content

Commit

Permalink
sync: Part 8 sync to upstream (#552)
Browse files Browse the repository at this point in the history
* feat: banner when register with already linked social account (#54)

* fix: fix lint warnings

* chore: added banner when register with already linked social account

* style: changed text color

---------

Co-authored-by: Anton Yarmolenko <[email protected]>

* chore: fix after merge

* chore: update tab bar icons for selected unselected states (#81)

* chore: Elm theme improvements on Profile (#82)

* chore: fix after merge

* fix: fix tab bar color not properly applying (#85)

* fix: fix tar bar color not properly applying
* chore: parity with android for discover icon

* chore: added missed colors

---------

Co-authored-by: Anton Yarmolenko <[email protected]>
Co-authored-by: Saeed Bashir <[email protected]>
  • Loading branch information
3 people authored Dec 17, 2024
1 parent c104371 commit 403205f
Show file tree
Hide file tree
Showing 38 changed files with 286 additions and 168 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,13 @@ public final class SignUpViewModel: ObservableObject {
analytics.userLogin(method: authMethod)
isShowProgress = false
router.showMainOrWhatsNewScreen(sourceScreen: sourceScreen)
NotificationCenter.default.post(name: .userAuthorized, object: nil)
NotificationCenter.default.post(
name: .userAuthorized,
object: [
"authMethod": authMethod,
"showSocialRegisterBanner": true
]
)
} catch {
update(fullName: response.name, email: response.email)
self.externalToken = response.token
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
{
"images" : [

{
"filename" : "learn filled.svg",
"filename" : "discover_inactive.svg",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"template-rendering-intent" : "template"
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "Frame-6.svg",
"filename" : "learn_active.svg",
"idiom" : "universal"
}
],
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "Frame-8.svg",
"filename" : "learn_inactive.svg",
"idiom" : "universal"
}
],
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "delete_eyes.svg",
"filename" : "profile_active.svg",
"idiom" : "universal"
}
],
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "profile_inactive.svg",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 0 additions & 22 deletions Core/Core/Assets.xcassets/Profile/bg_delete.imageset/Contents.json

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
{
"images" : [
{
"filename" : "Group 82 (1).svg",
"idiom" : "universal"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"filename" : "Group 82-2.svg",
"filename" : "noavatar.svg",
"idiom" : "universal"
}
],
Expand Down
Loading

0 comments on commit 403205f

Please sign in to comment.