ユーザー名ボタンをクリックすると、ユーザー名ビュー用に作成したフルスクリーンの新しいビューがポップアップするようにしようとしています。navigationView を試してみましたが、タイトルがメイン ビューに表示されるのが好きではありません。機能するシートを使用してみましたが、全画面をカバーしていません。MainScreen.swift、Username.swift、Data.swift など、私が持っているさまざまなビュー間を移動する方法はありますか ありがとう!
//Creating booleans to show sheets of different menus
@State var showUser: Bool = false
@State var showData: Bool = false
var body: some View {
//Making
ScrollView(.vertical){
VStack{
//User button
Button(action: {
withAnimation{
self.showUser = true
}
})
{
// Creating Hstack for name of button and image
HStack{
//Text of button
Text("Username")
.font(.custom("Futura", size: 17))
.fontWeight(.ultraLight)
//Image of button
Image(systemName: "person.crop.circle.fill")
} //Hstack
.aspectRatio(contentMode: .fit)
.frame(minWidth: 0, maxWidth: 300)
.padding()
.background(RoundedRectangle(cornerRadius: 10).stroke(Color.blue, lineWidth: 2))
.padding(.top, 5)
.padding(.bottom, 5)
//username button settings
} //user button
//Data button
if showData {
Data()
.animation(.spring())
.transition(.slide)
} else {
Button(action:{
withAnimation{
self.showData = true
}
})
{
// Creating Hstack for data and image
HStack{
// Text of button
Text("Data")
.font(.custom("Futura", size: 17))
.fontWeight(.ultraLight)
// Image of button
Image(systemName: "chart.pie")
} //Hstack
.padding(.top, 180.0)
.padding(.bottom, 2)
.aspectRatio(contentMode: .fit)
.frame(minWidth: 0, maxWidth: 300)
.frame(minHeight: 0, maxHeight: 200)
.padding()
.background(RoundedRectangle(cornerRadius: 10).stroke(Color.blue, lineWidth: 2))
.padding(.bottom, 50)
//Data button settings
} //data button
}//showing data sheet