Browse Source

Uses damus image on the homepage

Closes: #291
Changelog-Added: Damus icon at the top
translations_damus-localizations-en-us-xcloc-localized-contents-en-us-xliff--master_es_419
Ben Weeks 2 years ago
committed by William Casarin
parent
commit
dccaf35410
  1. 23
      damus/Assets.xcassets/damus-home.imageset/Contents.json
  2. BIN
      damus/Assets.xcassets/damus-home.imageset/damus-home@1x.png
  3. BIN
      damus/Assets.xcassets/damus-home.imageset/damus-home@2x.png
  4. BIN
      damus/Assets.xcassets/damus-home.imageset/damus-home@3x.png
  5. 13
      damus/ContentView.swift

23
damus/Assets.xcassets/damus-home.imageset/Contents.json

@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "damus-home@1x.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "damus-home@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "damus-home@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

BIN
damus/Assets.xcassets/damus-home.imageset/damus-home@1x.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

BIN
damus/Assets.xcassets/damus-home.imageset/damus-home@2x.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

BIN
damus/Assets.xcassets/damus-home.imageset/damus-home@3x.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

13
damus/ContentView.swift

@ -169,6 +169,19 @@ struct ContentView: View {
}
}
.navigationBarTitle(selected_timeline == .home ? NSLocalizedString("Home", comment: "Navigation bar title for Home view where posts and replies appear from those who the user is following.") : NSLocalizedString("Global", comment: "Navigation bar title for Global view where posts from all connected relay servers appear."), displayMode: .inline)
.toolbar {
ToolbarItem(placement: .principal) {
if selected_timeline == .home {
Image("damus-home")
.resizable()
.frame(width:30,height:30)
.shadow(color: Color("DamusPurple"), radius: 2)
} else {
Text("Global")
}
}
}
}
var MaybeSearchView: some View {

Loading…
Cancel
Save