Skip to content

Commit

Permalink
Merge pull request #16 from Aayush9029/ThemeUpdate
Browse files Browse the repository at this point in the history
Faster Streamer Image Loading
  • Loading branch information
Aayush9029 authored Nov 4, 2021
2 parents 5c30f39 + 244a41f commit c36ab17
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions NativeTwitch.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEVELOPMENT_ASSET_PATHS = "\"NativeTwitch/Preview Content\"";
DEVELOPMENT_TEAM = 4538W4A79B;
ENABLE_HARDENED_RUNTIME = YES;
Expand All @@ -423,7 +423,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 12.0;
MARKETING_VERSION = 1.0;
MARKETING_VERSION = 1.1;
PRODUCT_BUNDLE_IDENTIFIER = com.aayush.opensource.NativeTwitch;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand All @@ -439,7 +439,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEVELOPMENT_ASSET_PATHS = "\"NativeTwitch/Preview Content\"";
DEVELOPMENT_TEAM = 4538W4A79B;
ENABLE_HARDENED_RUNTIME = YES;
Expand All @@ -450,7 +450,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 12.0;
MARKETING_VERSION = 1.0;
MARKETING_VERSION = 1.1;
PRODUCT_BUNDLE_IDENTIFIER = com.aayush.opensource.NativeTwitch;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand Down
Binary file not shown.
7 changes: 3 additions & 4 deletions NativeTwitch/View/StreamRowView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,9 @@ struct StreamRowView: View {
.padding(.horizontal, 10)
.animation(.default, value: hovered)
.onAppear(perform: {
// A hacky way of loading logo once the view appears
DispatchQueue.main.asyncAfter(deadline: .now() + 1, execute: {
getUserLogo()
})

getUserLogo()

})
}
}
Expand Down

0 comments on commit c36ab17

Please sign in to comment.