Skip to content
Snippets Groups Projects
Commit 2c9d5682 authored by Charles Wright's avatar Charles Wright
Browse files

Fix up the comment composer buttons to be the correct symbols from the design

parent 8f4a26ee
No related branches found
No related tags found
2 merge requests!210New comments view (previously replies),!209Draft: v1.1.0
......@@ -66,7 +66,7 @@ struct CommentsView: View {
Button(action: {
// Pick media to attach
}) {
Image(systemName: SystemImages.paperclipCircleFill.rawValue)
Image(systemName: SystemImages.paperclip.rawValue)
.resizable()
.frame(width: 32, height: 32)
}
......@@ -86,7 +86,7 @@ struct CommentsView: View {
AsyncButton(action: {
try await send()
}) {
Image(systemName: SystemImages.paperplaneCircleFill.rawValue)
Image(systemName: SystemImages.paperplaneFill.rawValue)
.resizable()
.frame(width: 32, height: 32)
}
......
//
// LikeButton.swift
// Circles
//
// Created by Charles Wright on 7/19/24.
//
import SwiftUI
struct LikeButton: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
LikeButton()
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment