Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
1
1weather
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dmitriy Stepanets
1weather
Commits
ff92bc40
Commit
ff92bc40
authored
Sep 20, 2021
by
Dmitry Stepanets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IOS-272: Added onboarding descriptions
parent
d24e62b4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
5 deletions
+7
-5
1Weather.xcodeproj/xcshareddata/xcschemes/1Weather.xcscheme
+1
-1
1Weather/Resources/en.lproj/Localizable.strings
+3
-3
1Weather/UI/View controllers/Onboarding/InitialOnboarding/OnboardingContentController.swift
+3
-1
No files found.
1Weather.xcodeproj/xcshareddata/xcschemes/1Weather.xcscheme
View file @
ff92bc40
...
@@ -75,7 +75,7 @@
...
@@ -75,7 +75,7 @@
buildConfiguration =
"Debug"
>
buildConfiguration =
"Debug"
>
</AnalyzeAction>
</AnalyzeAction>
<ArchiveAction
<ArchiveAction
buildConfiguration =
"
Release
"
buildConfiguration =
"
Debug
"
revealArchiveInOrganizer =
"YES"
>
revealArchiveInOrganizer =
"YES"
>
</ArchiveAction>
</ArchiveAction>
</Scheme>
</Scheme>
1Weather/Resources/en.lproj/Localizable.strings
View file @
ff92bc40
...
@@ -351,8 +351,8 @@
...
@@ -351,8 +351,8 @@
"onboarding.skip" = "Skip";
"onboarding.skip" = "Skip";
"onboarding.done" = "Done";
"onboarding.done" = "Done";
"onboarding.forecast.title" = "Extended forecast";
"onboarding.forecast.title" = "Extended forecast";
"onboarding.forecast.subtitle" = "
<Description>
";
"onboarding.forecast.subtitle" = "
Get accurate forecasts for extended periods of time for any location
";
"onboarding.alerts.title" = "Weather alerts";
"onboarding.alerts.title" = "Weather alerts";
"onboarding.alerts.subtitle" = "
<Description>
";
"onboarding.alerts.subtitle" = "
Get alerts about severe weather well-in-advance
";
"onboarding.radar.title" = "Live doppler radar";
"onboarding.radar.title" = "Live doppler radar";
"onboarding.radar.subtitle" = "
<Description>
";
"onboarding.radar.subtitle" = "
Our live radar gives you real-time weather updates with excellent accuracy
";
1Weather/UI/View controllers/Onboarding/InitialOnboarding/OnboardingContentController.swift
View file @
ff92bc40
...
@@ -61,6 +61,8 @@ private extension OnboardingContentController {
...
@@ -61,6 +61,8 @@ private extension OnboardingContentController {
view
.
addSubview
(
titleLabel
)
view
.
addSubview
(
titleLabel
)
subtitleLabel
.
font
=
AppFont
.
SFPro
.
regular
(
size
:
14
)
subtitleLabel
.
font
=
AppFont
.
SFPro
.
regular
(
size
:
14
)
subtitleLabel
.
lineBreakMode
=
.
byWordWrapping
subtitleLabel
.
numberOfLines
=
0
view
.
addSubview
(
subtitleLabel
)
view
.
addSubview
(
subtitleLabel
)
//Constraints
//Constraints
...
@@ -70,7 +72,7 @@ private extension OnboardingContentController {
...
@@ -70,7 +72,7 @@ private extension OnboardingContentController {
}
}
subtitleLabel
.
snp
.
makeConstraints
{
make
in
subtitleLabel
.
snp
.
makeConstraints
{
make
in
make
.
left
.
equalToSuperview
()
.
inset
(
30
)
make
.
left
.
right
.
equalToSuperview
()
.
inset
(
30
)
make
.
top
.
equalTo
(
titleLabel
.
snp
.
bottom
)
.
offset
(
10
)
make
.
top
.
equalTo
(
titleLabel
.
snp
.
bottom
)
.
offset
(
10
)
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment