├── .gitignore ├── ReadMe.md ├── ShellGallery.sln └── ShellGallery ├── ShellGallery.Android ├── Assets │ └── AboutAssets.txt ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable │ │ ├── CustomSelector.xml │ │ ├── CustomSelector2.xml │ │ ├── FlowerBuds.jpg │ │ ├── Fruits.jpg │ │ ├── Icon.png │ │ ├── Legumes.jpg │ │ ├── Vegetables.jpg │ │ ├── bank.png │ │ ├── bell.png │ │ ├── books.png │ │ ├── booksflyout.png │ │ ├── calculator.png │ │ ├── card.png │ │ ├── caret_r.png │ │ ├── cartman.xml │ │ ├── coffee.png │ │ ├── cover1.jpg │ │ ├── cover1small.jpg │ │ ├── crimson.jpg │ │ ├── crimsonsmall.jpg │ │ ├── error.xml │ │ ├── film.png │ │ ├── filmflyout.png │ │ ├── games.png │ │ ├── gamesflyout.png │ │ ├── gear.png │ │ ├── grid.png │ │ ├── headphone.png │ │ ├── headphoneflyout.png │ │ ├── heart.xml │ │ ├── home.png │ │ ├── homeflyout.png │ │ ├── invalidimage.jpg │ │ ├── jet.png │ │ ├── loop.png │ │ ├── menuIcon.png │ │ ├── mic.png │ │ ├── newspaper.png │ │ ├── newspaperflyout.png │ │ ├── oasis.jpg │ │ ├── oasissmall.jpg │ │ ├── person.png │ │ ├── photo.jpg │ │ ├── red_button.xml │ │ ├── seth.png │ │ ├── star.png │ │ ├── synchronize.xml │ │ ├── synchronize_disabled.xml │ │ ├── synchronize_enabled.png │ │ ├── test.jpg │ │ ├── toolbar_close.png │ │ └── xamarinstore.jpg │ ├── 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 │ │ ├── strings.xml │ │ └── styles.xml ├── ShellGallery.Android.csproj └── binobj.zip ├── ShellGallery.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 │ ├── 3bar.png │ ├── 3bar@2x.png │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── FlowerBuds.jpg │ ├── Fruits.jpg │ ├── Icon-60@2x.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ ├── LaunchScreen.storyboard │ ├── Legumes.jpg │ ├── Vegetables.jpg │ ├── about.png │ ├── about@2x.png │ ├── bell.png │ ├── bell@2x.png │ ├── blog.png │ ├── blog@2x.png │ ├── books.png │ ├── books@2x.png │ ├── booksflyout.png │ ├── booksflyout@2x.png │ ├── card.png │ ├── card@2x.png │ ├── facebook.png │ ├── facebook@2x.png │ ├── favorite.png │ ├── film.png │ ├── film@2x.png │ ├── filmflyout.png │ ├── filmflyout@2x.png │ ├── games.png │ ├── games@2x.png │ ├── gamesflyout.png │ ├── gamesflyout@2x.png │ ├── gear.png │ ├── gear@2x.png │ ├── googleplus.png │ ├── googleplus@2x.png │ ├── grid.png │ ├── grid@2x.png │ ├── headphone.png │ ├── headphone@2x.png │ ├── headphoneflyout.png │ ├── headphoneflyout@2x.png │ ├── hm.png │ ├── hm@2x.png │ ├── hm_full.jpg │ ├── home.png │ ├── home@2x.png │ ├── homeflyout.png │ ├── homeflyout@2x.png │ ├── ic_pause.png │ ├── ic_pause@2x.png │ ├── ic_play.png │ ├── ic_play@2x.png │ ├── ic_share.png │ ├── ic_share@2x.png │ ├── ic_stop.png │ ├── ic_stop@2x.png │ ├── instagram.png │ ├── instagram@2x.png │ ├── invalidimage.jpg │ ├── jet.png │ ├── jet@2x.png │ ├── lists.png │ ├── loop.png │ ├── loop@2x.png │ ├── messages.png │ ├── mic.png │ ├── newspaper.png │ ├── newspaper@2x.png │ ├── newspaperflyout.png │ ├── newspaperflyout@2x.png │ ├── notifications.png │ ├── person.png │ ├── person@2x.png │ ├── photo.jpg │ ├── profile.png │ ├── ratchet.png │ ├── ratchet@2x.png │ ├── ratchet_full.jpg │ ├── refresh.png │ ├── refresh@2x.png │ ├── reply.png │ ├── retweet.png │ ├── rui.jpg │ ├── scott.png │ ├── scott159.png │ ├── search.png │ ├── slideout.png │ ├── slideout@2x.png │ ├── star-flyout.png │ ├── star-flyout@2x.png │ ├── star.png │ ├── star@2x.png │ ├── tdl.png │ ├── tdl@2x.png │ ├── tdl_full.jpg │ ├── tweet.png │ ├── twitter.png │ ├── twitter@2x.png │ ├── twitternav.png │ ├── twitternav@2x.png │ ├── xamarinlogo.png │ └── xamarinstore.jpg └── ShellGallery.iOS.csproj └── ShellGallery ├── App.xaml ├── App.xaml.cs ├── ShellGallery.csproj └── XamStore ├── Controls ├── FlyoutHeader.xaml └── FlyoutHeader.xaml.cs ├── StoreShell.xaml ├── StoreShell.xaml.cs └── Views └── StorePages.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/.gitignore -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ReadMe.md -------------------------------------------------------------------------------- /ShellGallery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery.sln -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/MainActivity.cs -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/CustomSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/CustomSelector.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/CustomSelector2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/CustomSelector2.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/FlowerBuds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/FlowerBuds.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/Fruits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/Fruits.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/Legumes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/Legumes.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/Vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/Vegetables.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/bank.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/bell.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/books.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/booksflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/booksflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/calculator.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/card.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/caret_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/caret_r.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/cartman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/cartman.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/coffee.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/cover1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/cover1.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/cover1small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/cover1small.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/crimson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/crimson.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/crimsonsmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/crimsonsmall.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/error.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/film.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/filmflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/filmflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/games.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/gamesflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/gamesflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/gear.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/grid.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/headphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/headphone.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/headphoneflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/headphoneflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/heart.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/home.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/homeflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/homeflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/invalidimage.jpg: -------------------------------------------------------------------------------- 1 | This is certainly not a real JPEG. -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/jet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/jet.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/loop.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/menuIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/menuIcon.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/mic.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/newspaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/newspaper.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/newspaperflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/newspaperflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/oasis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/oasis.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/oasissmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/oasissmall.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/person.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/photo.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/red_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/red_button.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/seth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/seth.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/star.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/synchronize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/synchronize.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/synchronize_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/synchronize_disabled.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/synchronize_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/synchronize_enabled.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/test.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/toolbar_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/toolbar_close.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/drawable/xamarinstore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/drawable/xamarinstore.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/values/strings.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/ShellGallery.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/ShellGallery.Android.csproj -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.Android/binobj.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.Android/binobj.zip -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Entitlements.plist -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Info.plist -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Main.cs -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/3bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/3bar.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/3bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/3bar@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Default.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/FlowerBuds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/FlowerBuds.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Fruits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Fruits.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Legumes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Legumes.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/Vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/Vegetables.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/about.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/about@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/bell.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/bell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/bell@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/blog.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/blog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/blog@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/books.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/books@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/books@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/booksflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/booksflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/booksflyout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/booksflyout@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/card.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/card@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/card@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/facebook.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/facebook@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/favorite.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/film.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/film@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/film@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/filmflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/filmflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/filmflyout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/filmflyout@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/games.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/games@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/games@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/gamesflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/gamesflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/gamesflyout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/gamesflyout@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/gear.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/gear@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/googleplus.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/googleplus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/googleplus@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/grid.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/grid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/grid@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/headphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/headphone.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/headphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/headphone@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/headphoneflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/headphoneflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/headphoneflyout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/headphoneflyout@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/hm.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/hm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/hm@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/hm_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/hm_full.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/home.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/home@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/homeflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/homeflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/homeflyout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/homeflyout@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/ic_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/ic_pause.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/ic_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/ic_pause@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/ic_play.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/ic_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/ic_play@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/ic_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/ic_share.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/ic_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/ic_share@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/ic_stop.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/ic_stop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/ic_stop@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/instagram.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/instagram@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/invalidimage.jpg: -------------------------------------------------------------------------------- 1 | This is certainly not a real JPEG. -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/jet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/jet.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/jet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/jet@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/lists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/lists.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/loop.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/loop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/loop@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/messages.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/mic.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/newspaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/newspaper.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/newspaper@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/newspaper@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/newspaperflyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/newspaperflyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/newspaperflyout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/newspaperflyout@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/notifications.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/person.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/person@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/person@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/photo.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/profile.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/ratchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/ratchet.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/ratchet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/ratchet@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/ratchet_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/ratchet_full.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/refresh.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/refresh@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/reply.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/retweet.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/rui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/rui.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/scott.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/scott.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/scott159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/scott159.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/search.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/slideout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/slideout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/slideout@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/star-flyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/star-flyout.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/star-flyout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/star-flyout@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/star.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/star@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/tdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/tdl.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/tdl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/tdl@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/tdl_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/tdl_full.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/tweet.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/twitter.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/twitter@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/twitternav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/twitternav.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/twitternav@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/twitternav@2x.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/xamarinlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/xamarinlogo.png -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/Resources/xamarinstore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/Resources/xamarinstore.jpg -------------------------------------------------------------------------------- /ShellGallery/ShellGallery.iOS/ShellGallery.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery.iOS/ShellGallery.iOS.csproj -------------------------------------------------------------------------------- /ShellGallery/ShellGallery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery/App.xaml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery/App.xaml.cs -------------------------------------------------------------------------------- /ShellGallery/ShellGallery/ShellGallery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery/ShellGallery.csproj -------------------------------------------------------------------------------- /ShellGallery/ShellGallery/XamStore/Controls/FlyoutHeader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery/XamStore/Controls/FlyoutHeader.xaml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery/XamStore/Controls/FlyoutHeader.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery/XamStore/Controls/FlyoutHeader.xaml.cs -------------------------------------------------------------------------------- /ShellGallery/ShellGallery/XamStore/StoreShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery/XamStore/StoreShell.xaml -------------------------------------------------------------------------------- /ShellGallery/ShellGallery/XamStore/StoreShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery/XamStore/StoreShell.xaml.cs -------------------------------------------------------------------------------- /ShellGallery/ShellGallery/XamStore/Views/StorePages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ShellGallery/HEAD/ShellGallery/ShellGallery/XamStore/Views/StorePages.cs --------------------------------------------------------------------------------