Commit 66169254 by Daniel Dahan

updated README

parent 06785c3d
...@@ -41,7 +41,7 @@ class AppPageTabBarController: PageTabBarController { ...@@ -41,7 +41,7 @@ class AppPageTabBarController: PageTabBarController {
/// Prepares the pageTabBar. /// Prepares the pageTabBar.
private func preparePageTabBar() { private func preparePageTabBar() {
pageTabBar.lineColor = Color.blue.base pageTabBar.lineColor = Color.blueGrey.base
pageTabBar.dividerColor = Color.blueGrey.lighten5 pageTabBar.dividerColor = Color.blueGrey.lighten5
} }
} }
......
...@@ -44,7 +44,7 @@ class BlueViewController: UIViewController { ...@@ -44,7 +44,7 @@ class BlueViewController: UIViewController {
open override func viewDidLoad() { open override func viewDidLoad() {
super.viewDidLoad() super.viewDidLoad()
view.backgroundColor = Color.white view.backgroundColor = Color.blue.base
} }
/// Prepares the pageTabBarItem. /// Prepares the pageTabBarItem.
......
...@@ -44,7 +44,7 @@ class GreenViewController: UIViewController { ...@@ -44,7 +44,7 @@ class GreenViewController: UIViewController {
open override func viewDidLoad() { open override func viewDidLoad() {
super.viewDidLoad() super.viewDidLoad()
view.backgroundColor = Color.white view.backgroundColor = Color.green.base
} }
/// Prepares the pageTabBarItem. /// Prepares the pageTabBarItem.
......
...@@ -44,7 +44,7 @@ class RedViewController: UIViewController { ...@@ -44,7 +44,7 @@ class RedViewController: UIViewController {
open override func viewDidLoad() { open override func viewDidLoad() {
super.viewDidLoad() super.viewDidLoad()
view.backgroundColor = Color.white view.backgroundColor = Color.red.base
} }
/// Prepares the pageTabBarItem. /// Prepares the pageTabBarItem.
......
...@@ -154,7 +154,7 @@ A SearchBar is a powerful navigation tool that allows for user's input with an i ...@@ -154,7 +154,7 @@ A SearchBar is a powerful navigation tool that allows for user's input with an i
A PageTabBarController is a new component that links a customizable TabBar to a UIPageViewController making a powerful and visually pleasing component to have in any application. A PageTabBarController is a new component that links a customizable TabBar to a UIPageViewController making a powerful and visually pleasing component to have in any application.
![Material Image](http://www.cosmicmind.io/material/white/page-tab-bar-controller.gif) ![Material Image](http://www.cosmicmind.io/material/shared/page-tab-bar-controller.gif)
[Example Project](https://github.com/CosmicMind/Material/tree/development/Examples/Programmatic/PageTabBarController) [Example Project](https://github.com/CosmicMind/Material/tree/development/Examples/Programmatic/PageTabBarController)
......
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