mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-22 16:31:00 +00:00
Accounts: Allow text selection of username and bio
This commit is contained in:
parent
54198c877f
commit
735ed6a211
13 changed files with 37 additions and 0 deletions
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"images" : [
|
||||||
|
{
|
||||||
|
"filename" : "icon.png",
|
||||||
|
"idiom" : "universal",
|
||||||
|
"platform" : "ios",
|
||||||
|
"size" : "1024x1024"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"info" : {
|
||||||
|
"author" : "xcode",
|
||||||
|
"version" : 1
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 120 KiB |
21
IceCubesApp/Assets.xcassets/icon36.imageset/Contents.json
vendored
Normal file
21
IceCubesApp/Assets.xcassets/icon36.imageset/Contents.json
vendored
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"images" : [
|
||||||
|
{
|
||||||
|
"filename" : "icon.png",
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "1x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "2x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "3x"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"info" : {
|
||||||
|
"author" : "xcode",
|
||||||
|
"version" : 1
|
||||||
|
}
|
||||||
|
}
|
BIN
IceCubesApp/Assets.xcassets/icon36.imageset/icon.png
vendored
Normal file
BIN
IceCubesApp/Assets.xcassets/icon36.imageset/icon.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 120 KiB |
BIN
IceCubesApp/Embeds/bookmark.wav
Executable file
BIN
IceCubesApp/Embeds/bookmark.wav
Executable file
Binary file not shown.
BIN
IceCubesApp/Embeds/boost.wav
Executable file
BIN
IceCubesApp/Embeds/boost.wav
Executable file
Binary file not shown.
BIN
IceCubesApp/Embeds/favorite.wav
Executable file
BIN
IceCubesApp/Embeds/favorite.wav
Executable file
Binary file not shown.
BIN
IceCubesApp/Embeds/pull.wav
Executable file
BIN
IceCubesApp/Embeds/pull.wav
Executable file
Binary file not shown.
BIN
IceCubesApp/Embeds/refresh.wav
Executable file
BIN
IceCubesApp/Embeds/refresh.wav
Executable file
Binary file not shown.
BIN
IceCubesApp/Embeds/share.wav
Executable file
BIN
IceCubesApp/Embeds/share.wav
Executable file
Binary file not shown.
BIN
IceCubesApp/Embeds/tabSelection.wav
Executable file
BIN
IceCubesApp/Embeds/tabSelection.wav
Executable file
Binary file not shown.
BIN
IceCubesApp/Embeds/tootSent.wav
Executable file
BIN
IceCubesApp/Embeds/tootSent.wav
Executable file
Binary file not shown.
|
@ -156,6 +156,7 @@ struct AccountDetailHeaderView: View {
|
||||||
Text("@\(account.acct)")
|
Text("@\(account.acct)")
|
||||||
.font(.scaledCallout)
|
.font(.scaledCallout)
|
||||||
.foregroundColor(.gray)
|
.foregroundColor(.gray)
|
||||||
|
.textSelection(.enabled)
|
||||||
joinedAtView
|
joinedAtView
|
||||||
}
|
}
|
||||||
Spacer()
|
Spacer()
|
||||||
|
@ -181,6 +182,7 @@ struct AccountDetailHeaderView: View {
|
||||||
.font(.scaledBody)
|
.font(.scaledBody)
|
||||||
.emojiSize(Font.scaledBodyPointSize)
|
.emojiSize(Font.scaledBodyPointSize)
|
||||||
.padding(.top, 8)
|
.padding(.top, 8)
|
||||||
|
.textSelection(.enabled)
|
||||||
.environment(\.openURL, OpenURLAction { url in
|
.environment(\.openURL, OpenURLAction { url in
|
||||||
routerPath.handle(url: url)
|
routerPath.handle(url: url)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue