hide navigation bar but leave swipe back enabled
This commit is contained in:
parent
6fa088a849
commit
1078adf65a
|
@ -19,6 +19,8 @@ internal class AppCoordinator: BaseCoordinator {
|
|||
{
|
||||
self.iocContainer = iocContainer
|
||||
super.init(navigationController: navigationController)
|
||||
|
||||
self.setup()
|
||||
}
|
||||
|
||||
public func start() {
|
||||
|
@ -33,6 +35,10 @@ internal class AppCoordinator: BaseCoordinator {
|
|||
#warning("implement")
|
||||
return false
|
||||
}
|
||||
|
||||
private func setup() {
|
||||
self.navigationController.navigationBar.isHidden = true
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
## HomeVC
|
||||
- group by date
|
||||
- cell touched -> (group, row)
|
||||
- hide back button
|
||||
- disable swipe back (although back button/navbar not visible)
|
||||
|
||||
## All VC
|
||||
- show custom back button
|
||||
- constraints for smaller phones
|
||||
- expand content to top margin
|
||||
- check for longer texts of other languages
|
||||
- attributes strings (from localization)
|
||||
|
||||
## Onboarding
|
||||
- keyboard hides "next" button
|
||||
- implement "X" button
|
||||
|
|
Loading…
Reference in New Issue