├── PokeList.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── abrown.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── abrown.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── PokeList ├── API ├── APIError.swift ├── APIService.swift ├── APISession.swift └── RequestBuilder.swift ├── AppDelegate.swift ├── Assets.xcassets ├── .DS_Store ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── house.imageset │ ├── Contents.json │ ├── home2-white-1.pdf │ ├── home2-white-2.pdf │ └── home2-white.pdf ├── Base.lproj └── LaunchScreen.storyboard ├── Info.plist ├── PokeList.xcdatamodeld ├── .xccurrentversion └── PokeList.xcdatamodel │ └── contents ├── PokemonAPI ├── Pokemon.swift ├── PokemonAPIResponse.swift ├── PokemonEndpoint.swift ├── PokemonListItem.swift └── PokemonService.swift ├── PokemonDetail ├── PokemonDetailView.swift └── PokemonDetailViewModel.swift ├── PokemonList ├── PokemonListView.swift └── PokemonListViewModel.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json └── SceneDelegate.swift /PokeList.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PokeList.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PokeList.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PokeList.xcodeproj/project.xcworkspace/xcuserdata/abrown.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList.xcodeproj/project.xcworkspace/xcuserdata/abrown.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PokeList.xcodeproj/xcuserdata/abrown.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList.xcodeproj/xcuserdata/abrown.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PokeList.xcodeproj/xcuserdata/abrown.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList.xcodeproj/xcuserdata/abrown.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PokeList/API/APIError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/API/APIError.swift -------------------------------------------------------------------------------- /PokeList/API/APIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/API/APIService.swift -------------------------------------------------------------------------------- /PokeList/API/APISession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/API/APISession.swift -------------------------------------------------------------------------------- /PokeList/API/RequestBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/API/RequestBuilder.swift -------------------------------------------------------------------------------- /PokeList/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/AppDelegate.swift -------------------------------------------------------------------------------- /PokeList/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /PokeList/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PokeList/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PokeList/Assets.xcassets/house.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/Assets.xcassets/house.imageset/Contents.json -------------------------------------------------------------------------------- /PokeList/Assets.xcassets/house.imageset/home2-white-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/Assets.xcassets/house.imageset/home2-white-1.pdf -------------------------------------------------------------------------------- /PokeList/Assets.xcassets/house.imageset/home2-white-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/Assets.xcassets/house.imageset/home2-white-2.pdf -------------------------------------------------------------------------------- /PokeList/Assets.xcassets/house.imageset/home2-white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/Assets.xcassets/house.imageset/home2-white.pdf -------------------------------------------------------------------------------- /PokeList/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PokeList/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/Info.plist -------------------------------------------------------------------------------- /PokeList/PokeList.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/PokeList.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /PokeList/PokeList.xcdatamodeld/PokeList.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/PokeList.xcdatamodeld/PokeList.xcdatamodel/contents -------------------------------------------------------------------------------- /PokeList/PokemonAPI/Pokemon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/PokemonAPI/Pokemon.swift -------------------------------------------------------------------------------- /PokeList/PokemonAPI/PokemonAPIResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/PokemonAPI/PokemonAPIResponse.swift -------------------------------------------------------------------------------- /PokeList/PokemonAPI/PokemonEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/PokemonAPI/PokemonEndpoint.swift -------------------------------------------------------------------------------- /PokeList/PokemonAPI/PokemonListItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/PokemonAPI/PokemonListItem.swift -------------------------------------------------------------------------------- /PokeList/PokemonAPI/PokemonService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/PokemonAPI/PokemonService.swift -------------------------------------------------------------------------------- /PokeList/PokemonDetail/PokemonDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/PokemonDetail/PokemonDetailView.swift -------------------------------------------------------------------------------- /PokeList/PokemonDetail/PokemonDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/PokemonDetail/PokemonDetailViewModel.swift -------------------------------------------------------------------------------- /PokeList/PokemonList/PokemonListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/PokemonList/PokemonListView.swift -------------------------------------------------------------------------------- /PokeList/PokemonList/PokemonListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/PokemonList/PokemonListViewModel.swift -------------------------------------------------------------------------------- /PokeList/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PokeList/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-Compiled/pokelist/HEAD/PokeList/SceneDelegate.swift --------------------------------------------------------------------------------