├── iOS ├── Resources │ ├── about.png │ ├── news.png │ ├── about@2x.png │ ├── news@2x.png │ ├── refresh.png │ ├── slideout.png │ ├── refresh@2x.png │ ├── slideout@2x.png │ └── Default-568h@2x.png ├── Entitlements.plist ├── packages.config ├── Main.cs ├── AppDelegate.cs ├── Info.plist └── FootballTournament2014.iOS.csproj ├── Android ├── Resources │ ├── drawable │ │ ├── Icon.png │ │ └── slideout.png │ ├── drawable-hdpi │ │ ├── about.png │ │ ├── news.png │ │ └── refresh.png │ ├── drawable-mdpi │ │ ├── about.png │ │ ├── news.png │ │ └── refresh.png │ ├── drawable-xhdpi │ │ ├── news.png │ │ ├── about.png │ │ └── refresh.png │ ├── drawable-xxhdpi │ │ ├── about.png │ │ ├── news.png │ │ └── refresh.png │ ├── values │ │ └── Strings.xml │ ├── layout │ │ └── Main.axml │ └── AboutResources.txt ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── packages.config ├── Assets │ └── AboutAssets.txt ├── MainActivity.cs └── FootballTournament2014.Android.csproj ├── FootballTournament2014.WindowsPhone ├── about.png ├── news.png ├── refresh.png ├── slideout.png ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── IconicTileSmall.png │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileSmall.png │ │ ├── FlipCycleTileMedium.png │ │ └── IconicTileMediumLarge.png ├── Toolkit.Content │ ├── ApplicationBar.Add.png │ ├── ApplicationBar.Check.png │ ├── ApplicationBar.Cancel.png │ ├── ApplicationBar.Delete.png │ └── ApplicationBar.Select.png ├── README_FIRST.txt ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml ├── LocalizedStrings.cs ├── packages.config ├── MainPage.xaml.cs ├── MainPage.xaml ├── App.xaml ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx ├── App.xaml.cs └── FootballTournament2014.WindowsPhone.csproj ├── FootballTournament2014 ├── Helpers │ ├── ListTextCell.cs │ ├── ListImageCell.cs │ ├── HorizontalListTextCell.cs │ ├── GroupHelper.cs │ ├── KnockoutMatchCell.cs │ ├── Color.cs │ └── ScoreCell.cs ├── App.cs ├── Views │ ├── BaseView.cs │ ├── NewsDetailsView.cs │ ├── PodcastDetalView.cs │ ├── TeamDetailView.cs │ ├── MapView.cs │ ├── HomeView.cs │ ├── KnockoutMatchView.cs │ ├── TeamsView.cs │ ├── NewsView.cs │ ├── PodcastView.cs │ ├── GroupMatchView.cs │ ├── AboutView.cs │ └── HomeMasterView.cs ├── FootballTournament2014.shproj ├── ViewModels │ ├── MapViewModel.cs │ ├── HomeViewModel.cs │ ├── KnockoutMatchesViewModel.cs │ ├── PodcastViewModel.cs │ ├── NewsViewModel.cs │ ├── TeamsViewModel.cs │ ├── GroupMatchesViewModel.cs │ └── BaseViewModel.cs └── FootballTournament2014.projitems ├── FootballTournament.Common ├── Models │ ├── BaseModel.cs │ ├── Headline.cs │ ├── Links.cs │ ├── Podcast.cs │ ├── MenuItem.cs │ ├── SearchResults.cs │ ├── Location.cs │ ├── KnockoutMatch.cs │ ├── Team.cs │ └── Match.cs ├── packages.config ├── Services │ ├── NewsService.cs │ ├── TeamsService.cs │ ├── PodcastService.cs │ ├── MatchService.cs │ └── LocationService.cs ├── Properties │ └── AssemblyInfo.cs └── FootballTournament.Common.csproj ├── README.md ├── FootballTournament2014.userprefs ├── LICENSE ├── .gitignore └── FootballTournament2014.sln /iOS/Resources/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/iOS/Resources/about.png -------------------------------------------------------------------------------- /iOS/Resources/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/iOS/Resources/news.png -------------------------------------------------------------------------------- /iOS/Resources/about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/iOS/Resources/about@2x.png -------------------------------------------------------------------------------- /iOS/Resources/news@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/iOS/Resources/news@2x.png -------------------------------------------------------------------------------- /iOS/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/iOS/Resources/refresh.png -------------------------------------------------------------------------------- /iOS/Resources/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/iOS/Resources/slideout.png -------------------------------------------------------------------------------- /iOS/Resources/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/iOS/Resources/refresh@2x.png -------------------------------------------------------------------------------- /iOS/Resources/slideout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/iOS/Resources/slideout@2x.png -------------------------------------------------------------------------------- /iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Android/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-hdpi/about.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-hdpi/news.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-mdpi/about.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-mdpi/news.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-xhdpi/news.png -------------------------------------------------------------------------------- /Android/Resources/drawable/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable/slideout.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-hdpi/refresh.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-mdpi/refresh.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-xhdpi/about.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-xxhdpi/about.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-xxhdpi/news.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-xhdpi/refresh.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/Android/Resources/drawable-xxhdpi/refresh.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/about.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/news.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/refresh.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/slideout.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsneed/FootballTournament2014/HEAD/FootballTournament2014.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png -------------------------------------------------------------------------------- /FootballTournament2014/Helpers/ListTextCell.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xamarin.Forms; 3 | 4 | namespace FootballTournament2014 5 | { 6 | public class ListTextCell : TextCell 7 | { 8 | 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Android/Resources/values/Strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello World, Click Me! 4 | FootballTournament2014.Android.Android 5 | 6 | -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /iOS/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /FootballTournament2014.WindowsPhone/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /FootballTournament2014/Helpers/ListImageCell.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xamarin.Forms; 3 | 4 | namespace FootballTournament2014 5 | { 6 | public class ListImageCell : ImageCell 7 | { 8 | public ListImageCell() 9 | { 10 | } 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /FootballTournament2014/App.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xamarin.Forms; 3 | 4 | namespace FootballTournament2014 5 | { 6 | public class App 7 | { 8 | private static Page homeView; 9 | public static Page RootPage 10 | { 11 | get { return homeView ?? (homeView = new HomeView ()); } 12 | } 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /FootballTournament2014/Helpers/HorizontalListTextCell.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xamarin.Forms; 3 | 4 | namespace FootballTournament2014 5 | { 6 | public class HorizontalListTextCell : TextCell 7 | { 8 | public HorizontalListTextCell() 9 | { 10 | // Style = TextCellStyle.Vertical; 11 | 12 | } 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /FootballTournament.Common/Models/BaseModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace FootballTournament2014.Common.Models 4 | { 5 | public class BaseModel 6 | { 7 | public BaseModel () 8 | { 9 | } 10 | 11 | public string Title {get;set;} 12 | public string Details { get; set; } 13 | public int Id { get; set; } 14 | 15 | } 16 | 17 | } 18 | 19 | -------------------------------------------------------------------------------- /FootballTournament.Common/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Android/Resources/layout/Main.axml: -------------------------------------------------------------------------------- 1 | 2 | 7 |