File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed
project.xcworkspace/xcuserdata/iliuh.xcuserdatad
xcuserdata/iliuh.xcuserdatad/xcschemes Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 407
407
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
408
408
CODE_SIGN_ENTITLEMENTS = StepsAppDemo/StepsAppDemo.entitlements;
409
409
CODE_SIGN_STYLE = Automatic;
410
- CURRENT_PROJECT_VERSION = 1 ;
410
+ CURRENT_PROJECT_VERSION = 2 ;
411
411
DEVELOPMENT_ASSET_PATHS = "\"StepsAppDemo/Preview Content\"";
412
412
DEVELOPMENT_TEAM = TPZ6C9434K;
413
413
ENABLE_PREVIEWS = YES;
440
440
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
441
441
CODE_SIGN_ENTITLEMENTS = StepsAppDemo/StepsAppDemo.entitlements;
442
442
CODE_SIGN_STYLE = Automatic;
443
- CURRENT_PROJECT_VERSION = 1 ;
443
+ CURRENT_PROJECT_VERSION = 2 ;
444
444
DEVELOPMENT_ASSET_PATHS = "\"StepsAppDemo/Preview Content\"";
445
445
DEVELOPMENT_TEAM = TPZ6C9434K;
446
446
ENABLE_PREVIEWS = YES;
Original file line number Diff line number Diff line change 7
7
<key >StepsAppDemo.xcscheme_^#shared#^_ </key >
8
8
<dict >
9
9
<key >orderHint </key >
10
- <integer >1 </integer >
10
+ <integer >0 </integer >
11
11
</dict >
12
12
</dict >
13
13
</dict >
Original file line number Diff line number Diff line change @@ -32,11 +32,17 @@ struct StepsView: View {
32
32
tabSwitch = i
33
33
}
34
34
} label: {
35
- Text ( timeArray [ i] )
35
+ VStack {
36
+ Text ( timeArray [ i] )
37
+ if tabSwitch == i {
38
+ Spacer ( ) . frame ( height: 5 )
39
+ Rectangle . init ( ) . foregroundColor ( . mainColor) . frame ( width: 20 , height: 2.0 )
40
+ }
41
+ }
36
42
}
37
43
. foregroundColor ( tabSwitch == i ? . black: . dateGray)
38
- . padding ( 5 )
39
- . font ( Font . system ( size: 18 , weight: tabSwitch == i ? . bold : . regular) )
44
+ . padding ( 15 )
45
+ . font ( Font . system ( size: 16 , weight: tabSwitch == i ? . bold : . regular) )
40
46
}
41
47
Spacer ( )
42
48
You can’t perform that action at this time.
0 commit comments