main flow

git status
This commit is contained in:
2017-09-19 00:05:38 +03:00
parent 1f233d977b
commit addc63ed21
32 changed files with 880 additions and 11 deletions

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="PizzalinkToolbar">
<attr name="showHamburgerMenuIcon" format="boolean" />
<attr name="title" format="string" />
</declare-styleable>
</resources>

View File

@@ -1,6 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#FF4081</color>
<color name="colorPrimary">#EC1649</color>
<color name="colorPrimaryDark">#EC1649</color>
<color name="colorAccent">#EC1649</color>
<color name="red">#EC1649</color>
<color name="black">#303030</color>
<color name="white">#ffffff</color>
<color name="bottom_menu_selected_item">#EC1649</color>
<color name="bottom_menu_unselected_item">#ffffff</color>
</resources>

View File

@@ -1,3 +1,27 @@
<resources>
<string name="app_name">Pizzalink</string>
<!-- MainAcitivity -->
<string name="bottom_nav_menu_item_order">Order</string>
<string name="bottom_nav_menu_item_my_cart">My Cart</string>
<string name="bottom_nav_menu_item_profile">Profile</string>
<string name="bottom_nav_menu_item_info">Info</string>
<!-- MainAcitivity -->
<!-- OrderFragment -->
<string name="fragment_title_order">Order</string>
<!-- OrderFragment -->
<!-- OrderFragment -->
<string name="fragment_title_cart">Cart</string>
<!-- OrderFragment -->
<!-- OrderFragment -->
<string name="fragment_title_profile">Profile</string>
<!-- OrderFragment -->
<!-- OrderFragment -->
<string name="fragment_title_info">Info</string>
<!-- OrderFragment -->
</resources>

View File

@@ -8,4 +8,9 @@
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
</resources>