├── .gitignore ├── LICENSE ├── README.md ├── design └── RottenUI.xd └── src └── RottenUI ├── RottenUI.Android ├── Assets │ ├── AboutAssets.txt │ ├── OpenSans-Bold.ttf │ ├── OpenSans-Light.ttf │ └── OpenSans-Regular.ttf ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable-hdpi │ │ ├── Fresh.png │ │ ├── play_button.png │ │ ├── rotten_popcorn.png │ │ ├── rotten_tomato.png │ │ ├── white_gradient.png │ │ ├── zootopia_backdrop.png │ │ └── zootopia_poster.png │ ├── drawable-ldpi │ │ ├── Fresh.png │ │ ├── play_button.png │ │ ├── rotten_popcorn.png │ │ ├── rotten_tomato.png │ │ ├── white_gradient.png │ │ ├── zootopia_backdrop.png │ │ └── zootopia_poster.png │ ├── drawable-mdpi │ │ ├── Fresh.png │ │ ├── play_button.png │ │ ├── rotten_popcorn.png │ │ ├── rotten_tomato.png │ │ ├── white_gradient.png │ │ ├── zootopia_backdrop.png │ │ └── zootopia_poster.png │ ├── drawable-xhdpi │ │ ├── Fresh.png │ │ ├── play_button.png │ │ ├── rotten_popcorn.png │ │ ├── rotten_tomato.png │ │ ├── white_gradient.png │ │ ├── zootopia_backdrop.png │ │ └── zootopia_poster.png │ ├── drawable-xxhdpi │ │ ├── Fresh.png │ │ ├── play_button.png │ │ ├── rotten_popcorn.png │ │ ├── rotten_tomato.png │ │ ├── white_gradient.png │ │ ├── zootopia_backdrop.png │ │ └── zootopia_poster.png │ ├── drawable-xxxhdpi │ │ ├── Fresh.png │ │ ├── play_button.png │ │ ├── rotten_popcorn.png │ │ ├── rotten_tomato.png │ │ ├── white_gradient.png │ │ ├── zootopia_backdrop.png │ │ └── zootopia_poster.png │ ├── layout │ │ ├── Tabbar.axml │ │ └── Toolbar.axml │ ├── mipmap-anydpi-v26 │ │ ├── icon.xml │ │ └── icon_round.xml │ ├── mipmap-hdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-mdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-xhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-xxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-xxxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ └── values │ │ ├── colors.xml │ │ └── styles.xml └── RottenUI.Android.csproj ├── RottenUI.iOS ├── AppDelegate.cs ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon1024.png │ │ ├── Icon120.png │ │ ├── Icon152.png │ │ ├── Icon167.png │ │ ├── Icon180.png │ │ ├── Icon20.png │ │ ├── Icon29.png │ │ ├── Icon40.png │ │ ├── Icon58.png │ │ ├── Icon60.png │ │ ├── Icon76.png │ │ ├── Icon80.png │ │ └── Icon87.png ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Fresh.png │ ├── Fresh@2x.png │ ├── Fresh@3x.png │ ├── LaunchScreen.storyboard │ ├── OpenSans-Bold.ttf │ ├── OpenSans-Light.ttf │ ├── OpenSans-Regular.ttf │ ├── play_button.png │ ├── play_button@2x.png │ ├── play_button@3x.png │ ├── rotten_popcorn.png │ ├── rotten_popcorn@2x.png │ ├── rotten_popcorn@3x.png │ ├── rotten_tomato.png │ ├── rotten_tomato@2x.png │ ├── rotten_tomato@3x.png │ ├── white_gradient.png │ ├── white_gradient@2x.png │ ├── white_gradient@3x.png │ ├── zootopia_backdrop.png │ ├── zootopia_backdrop@2x.png │ ├── zootopia_backdrop@3x.png │ ├── zootopia_poster.png │ ├── zootopia_poster@2x.png │ └── zootopia_poster@3x.png └── RottenUI.iOS.csproj ├── RottenUI.sln └── RottenUI ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Data └── MockRepository.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── RottenUI.csproj └── Views ├── DetailsSection.xaml └── DetailsSection.xaml.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/README.md -------------------------------------------------------------------------------- /design/RottenUI.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/design/RottenUI.xd -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Assets/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Assets/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Assets/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Assets/OpenSans-Light.ttf -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Assets/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Assets/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/MainActivity.cs -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/Fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/Fresh.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/play_button.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/rotten_popcorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/rotten_popcorn.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/rotten_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/rotten_tomato.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/white_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/white_gradient.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/zootopia_backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/zootopia_backdrop.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/zootopia_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-hdpi/zootopia_poster.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/Fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/Fresh.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/play_button.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/rotten_popcorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/rotten_popcorn.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/rotten_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/rotten_tomato.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/white_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/white_gradient.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/zootopia_backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/zootopia_backdrop.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/zootopia_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-ldpi/zootopia_poster.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/Fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/Fresh.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/play_button.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/rotten_popcorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/rotten_popcorn.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/rotten_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/rotten_tomato.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/white_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/white_gradient.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/zootopia_backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/zootopia_backdrop.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/zootopia_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-mdpi/zootopia_poster.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/Fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/Fresh.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/play_button.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/rotten_popcorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/rotten_popcorn.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/rotten_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/rotten_tomato.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/white_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/white_gradient.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/zootopia_backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/zootopia_backdrop.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/zootopia_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xhdpi/zootopia_poster.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/Fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/Fresh.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/play_button.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/rotten_popcorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/rotten_popcorn.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/rotten_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/rotten_tomato.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/white_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/white_gradient.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/zootopia_backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/zootopia_backdrop.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/zootopia_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxhdpi/zootopia_poster.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/Fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/Fresh.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/play_button.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/rotten_popcorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/rotten_popcorn.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/rotten_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/rotten_tomato.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/white_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/white_gradient.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/zootopia_backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/zootopia_backdrop.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/zootopia_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/drawable-xxxhdpi/zootopia_poster.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.Android/RottenUI.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.Android/RottenUI.Android.csproj -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Entitlements.plist -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Info.plist -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Main.cs -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/Default.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/Fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/Fresh.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/Fresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/Fresh@2x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/Fresh@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/Fresh@3x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/OpenSans-Light.ttf -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/play_button.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/play_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/play_button@2x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/play_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/play_button@3x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/rotten_popcorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/rotten_popcorn.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/rotten_popcorn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/rotten_popcorn@2x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/rotten_popcorn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/rotten_popcorn@3x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/rotten_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/rotten_tomato.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/rotten_tomato@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/rotten_tomato@2x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/rotten_tomato@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/rotten_tomato@3x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/white_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/white_gradient.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/white_gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/white_gradient@2x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/white_gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/white_gradient@3x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/zootopia_backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/zootopia_backdrop.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/zootopia_backdrop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/zootopia_backdrop@2x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/zootopia_backdrop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/zootopia_backdrop@3x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/zootopia_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/zootopia_poster.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/zootopia_poster@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/zootopia_poster@2x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/Resources/zootopia_poster@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/Resources/zootopia_poster@3x.png -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.iOS/RottenUI.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.iOS/RottenUI.iOS.csproj -------------------------------------------------------------------------------- /src/RottenUI/RottenUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI.sln -------------------------------------------------------------------------------- /src/RottenUI/RottenUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI/App.xaml -------------------------------------------------------------------------------- /src/RottenUI/RottenUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI/App.xaml.cs -------------------------------------------------------------------------------- /src/RottenUI/RottenUI/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RottenUI/RottenUI/Data/MockRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI/Data/MockRepository.cs -------------------------------------------------------------------------------- /src/RottenUI/RottenUI/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI/MainPage.xaml -------------------------------------------------------------------------------- /src/RottenUI/RottenUI/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/RottenUI/RottenUI/RottenUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI/RottenUI.csproj -------------------------------------------------------------------------------- /src/RottenUI/RottenUI/Views/DetailsSection.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI/Views/DetailsSection.xaml -------------------------------------------------------------------------------- /src/RottenUI/RottenUI/Views/DetailsSection.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kphillpotts/RottenUI/HEAD/src/RottenUI/RottenUI/Views/DetailsSection.xaml.cs --------------------------------------------------------------------------------