As-is the release notes title is rendered using a Text view in:
|
Text(.init(release.title), bundle: .module) |
|
.font(.largeTitle) |
|
.fontWeight(.bold) |
|
.foregroundStyle(self.titleStyle) |
|
.multilineTextAlignment(.center) |
|
.padding(.leading, self.padding.leading) |
|
.padding(.trailing, self.padding.trailing) |
This is good, in that it works for the general case of longer titles.
It would be nice (and note: this is definitely a "nice to have" feature request due to the expected relative complexity of the required changes to the code), if it was possible to use a standard .title modifier on the ReleaseView.swift and get the benefits of the UINavigationBar large title + scrolling behavior to make the UX feel more standard.
As-is the release notes title is rendered using a Text view in:
Recap/Sources/Recap/Internal/ReleaseView.swift
Lines 13 to 19 in 8ce1035
This is good, in that it works for the general case of longer titles.
It would be nice (and note: this is definitely a "nice to have" feature request due to the expected relative complexity of the required changes to the code), if it was possible to use a standard .title modifier on the ReleaseView.swift and get the benefits of the UINavigationBar large title + scrolling behavior to make the UX feel more standard.