import SwiftUI
struct ContentView: View {
//默认第一个
@State var selected = "0.circle"
@Namespace var animation
var body: some View {
VStack{
ZStack(alignment: Alignment(horizontal: .center, vertical: .bottom)){
HStack(alignment: .center) {
Text("上导航栏窗口")
.font(.system(size: 25))
.fontWeight(.ultraLight)
.foregroundColor(.black)
Spacer()
Button(action: {}, label: {
HStack{
Image("6.alt.square.fill")
.resizable()
.aspectRatio(contentMode: .fill)
.frame(width: 35, height: 35)
Mac OS Swift UI 上导航栏窗口
最新推荐文章于 2023-09-14 14:50:08 发布