Commit 37c8ef1e authored by shigemi miura's avatar shigemi miura

Help更新

parent f8c506a2
...@@ -1218,7 +1218,7 @@ ...@@ -1218,7 +1218,7 @@
CODE_SIGN_ENTITLEMENTS = Sailassist/Sailassist.entitlements; CODE_SIGN_ENTITLEMENTS = Sailassist/Sailassist.entitlements;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1; CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_ASSET_PATHS = "\"Sailassist/Preview Content\""; DEVELOPMENT_ASSET_PATHS = "\"Sailassist/Preview Content\"";
DEVELOPMENT_TEAM = D2DC7QNNJ8; DEVELOPMENT_TEAM = D2DC7QNNJ8;
ENABLE_PREVIEWS = YES; ENABLE_PREVIEWS = YES;
...@@ -1264,7 +1264,7 @@ ...@@ -1264,7 +1264,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = Sailassist/Sailassist.entitlements; CODE_SIGN_ENTITLEMENTS = Sailassist/Sailassist.entitlements;
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1; CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_ASSET_PATHS = "\"Sailassist/Preview Content\""; DEVELOPMENT_ASSET_PATHS = "\"Sailassist/Preview Content\"";
DEVELOPMENT_TEAM = D2DC7QNNJ8; DEVELOPMENT_TEAM = D2DC7QNNJ8;
ENABLE_PREVIEWS = YES; ENABLE_PREVIEWS = YES;
...@@ -1447,7 +1447,7 @@ ...@@ -1447,7 +1447,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = Sailassist/Sailassist.entitlements; CODE_SIGN_ENTITLEMENTS = Sailassist/Sailassist.entitlements;
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1; CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_ASSET_PATHS = "\"Sailassist/Preview Content\""; DEVELOPMENT_ASSET_PATHS = "\"Sailassist/Preview Content\"";
DEVELOPMENT_TEAM = D2DC7QNNJ8; DEVELOPMENT_TEAM = D2DC7QNNJ8;
ENABLE_PREVIEWS = YES; ENABLE_PREVIEWS = YES;
......
...@@ -28,10 +28,12 @@ struct MapTaskView: View { ...@@ -28,10 +28,12 @@ struct MapTaskView: View {
var body: some View { var body: some View {
VStack{ VStack{
Capsule() if UIDevice.current.userInterfaceIdiom == .phone {
.foregroundColor(ColorSet.ScrollBarColor.color) Capsule()
.frame(width: 45, height: 3) .foregroundColor(ColorSet.ScrollBarColor.color)
.padding(.top, 10) .frame(width: 45, height: 3)
.padding(.top, 10)
}
//タイトルエリア //タイトルエリア
HStack{ HStack{
...@@ -85,7 +87,6 @@ struct MapTaskView: View { ...@@ -85,7 +87,6 @@ struct MapTaskView: View {
.onAppear{ .onAppear{
let appVersionModel = AppVersionModel() let appVersionModel = AppVersionModel()
appVersionModel.start() appVersionModel.start()
// EcaCoordinatesTable().setEcaData()
} }
.alert("", isPresented: $eca.isShowEcaAlert) { .alert("", isPresented: $eca.isShowEcaAlert) {
if let ecaArea = eca.ecaArea.map({ $0.1 }).filter({ $0.isRunning }).first{ if let ecaArea = eca.ecaArea.map({ $0.1 }).filter({ $0.isRunning }).first{
......
...@@ -84,14 +84,12 @@ struct MainTabView: View { ...@@ -84,14 +84,12 @@ struct MainTabView: View {
.tag(Tab.menu) .tag(Tab.menu)
} }
.hideNativeTabBar() .hideNativeTabBar()
.popover(isPresented: .constant(isPopover), attachmentAnchor: .point(.bottom), arrowEdge: .bottom) { .popover(isPresented: .constant(isPopover), attachmentAnchor: .point(.bottom)) {
MapTaskView() MapTaskView()
.presentationCompactAdaptation(.none) .presentationCompactAdaptation(.none)
.zIndex(0) .zIndex(0)
.presentationDragIndicator(.hidden)
.frame(minWidth: 300, maxHeight: 500) .frame(minWidth: 300, maxHeight: 500)
// .frame(minWidth: 0, maxWidth: 300, minHeight: 0, maxHeight: 600, alignment: .center) .aspectRatio(contentMode: .fit)
// .aspectRatio(contentMode: .fit)
.presentationCornerRadius(15) .presentationCornerRadius(15)
.presentationBackgroundInteraction(.enabled(upThrough: .medium)) .presentationBackgroundInteraction(.enabled(upThrough: .medium))
.presentationBackground(ColorSet.BackgroundSecondary.color) .presentationBackground(ColorSet.BackgroundSecondary.color)
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<div id="wrap"> <div id="wrap">
<div id="header"> <div id="header">
<h1>SSV Mobile</h1> <h1>Sail Assist</h1>
</div> </div>
<div id="contents"> <div id="contents">
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<div id="wrap"> <div id="wrap">
<div id="header"> <div id="header">
<h1>SSV Mobile</h1> <h1>Sail Assist</h1>
</div> </div>
<div id="contents"> <div id="contents">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment