-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create ItemsPage, add Description property to deals. TODO: Add resources to iOS, create borders between frames * Create iOS assets * Add separators * Apply style inheritance * Fix and refactor deal page * Fix UI Contains minor user interface changes and some spacing corrections * Change navigation bar colour to white, navigation arrow colour to black * Add private accessifiers to SelectionChanged methods. Create special sorted by the percentage change between previous cost and current cost * Add rating count. Create rate button, rate popup. Implement rating change * Rename FoodPlacesPage and ItemsPage. Create rating reseter * Add accent colour. Fix deal frame layout and search bar layout * Add property changed method * Change status bar colour. Remove unecessary padding * Add search bar validation * Order page sketch. Not well tested * Fix stepper bug * Add comments. Slight refactoring * Partially implement search page place choices * Add new properties. Add a little bit of styling to allPlacesButton * Update FoodPlacePage.xaml Make comment more accurate * Fix food place page * Rewrite user rating UI * Rename ItemPage to DealpPage. Make DealPage scroll. Handle exceptions when initializing a deal with 0 quantity * Add Coordinates struct * Add rounded corners to home page * Delete Coordinates struct. Order places by location * Fix scroll height in a hacky way. Open issue: xamarin/Xamarin.Forms#6451 * Add location permissions for iOS devices * Add costs struct * Fix card shadows * Add indexers. Save data to file * Fix file read error * Add groupJoin * Implement rating setting * Save ratings to file. Change SelectedStarValue according to the previous rating * Remove selected item colour. Add PlaceType to FoodPlace to be able to save data * Add fixed button widths * Rewrite LINQ queries Co-authored-by: artur-masalcev <arturmasalcev@gmail.com>
- Loading branch information
1 parent
4ff6348
commit 0368b0f
Showing
58 changed files
with
18,609 additions
and
3,293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.companyname.wasted"> | ||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="30" /> | ||
<application android:label="Wasted.Android" android:theme="@style/MainTheme"></application> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
</manifest> | ||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="30" /> | ||
<application android:label="Wasted.Android" android:theme="@style/MainTheme"></application> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | ||
<uses-feature android:name="android.hardware.location" android:required="false" /> | ||
<uses-feature android:name="android.hardware.location.gps" android:required="false" /> | ||
<uses-feature android:name="android.hardware.location.network" android:required="false" /> | ||
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /> | ||
</manifest> |
16,837 changes: 14,196 additions & 2,641 deletions
16,837
Wasted.Android/Resources/Resource.designer.cs
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<resources> | ||
<style name="MainTheme" parent="MainTheme.Base"> | ||
<item name="android:navigationBarColor">@android:color/black</item> | ||
<item name="colorPrimary">@color/colorPrimary</item> | ||
<item name="android:statusBarColor">@android:color/white</item>" | ||
<item name="android:windowLightStatusBar">true</item> | ||
<item name="colorPrimary">@android:color/white</item> | ||
<item name="colorAccent">@color/blue</item> | ||
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item> | ||
</style> | ||
|
||
<style name="DrawerArrowStyle" parent="@style/Widget.AppCompat.DrawerArrowToggle"> | ||
<item name="color">@android:color/black</item> | ||
</style> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.