Deverás ler este README.md, abrir o pokemon.xcodeproj e pesquisar por comentários a indicar "ACADEMIA" (por exemplo, no ficheiro PokemonCell.swift consegues encontrar 2 '//ACADEMIA') e preencher o código de UI como achares interessante.
An iOS application that retrieves and shows Pokémon information. This app use an an external API to get the pokemons and your additional information.
- Application developed using xCode 13.2.1
- Application developed using Swift 5
- MVVM architecture
- API used: PokeAPI (https://pokeapi.co/).
If you have a xCode below version 13.2.1, you need to change the iOS target to iOS 15.0 because Swift's concurrency it is not available for versions below xCode 13.2.1
- PokemonEndpointString: Responsable to create the url with parameters received.
- PokemonWebService: Responsable for the communication between the application and the API.
- PokemonListViewController: First screen. Showns the pokemon list in collection view. Each cell have the color corresponding to the type of pokemon, name, id. It has a search bar that allows the user to search for a pokemon by id or by name. When one of the cells is pressed, the app automatically go to detail of pokemon
- PokemondetailsViewController: Show the details of the pokemons. On this screen, the user can see the front or back image of the pokemon. You can also see its general details (Height, weight, ...), abilities and base stats. This screen also has an option to switch from pokemon through with a swipe(left or right)
- PokemonListView
- PokemonDetailsBottomView
- PokemonDetailsTopView
- PokemonListViewModel
- PokemonDetailsViewModel
- PokemonDetailsTopViewModel
- PokemonListDataSource: Data source and delegate for the list of pokemons. Used on PokemonListViewController UICollectionView
- PokemonDetailsTopViewTableDataSource: Data source and delegate for the details of pokemon. Used on POkemonDetailsTopView UITableView
- Pokemon
- PokemonList
- PokemonDetails
- PokemonCell: Cell with configuration to present the pokemon information. Used in the PokemonListViewController UICollectionView
- PokemonDetailsCell: Cell with configuration to present the details of the pokemon. Used in the PokemonDetailsTopView UITableView
- UIViewController
- UIApplication
- UIWindow
- UIView
- URLSession
- UILabel
- UIFont
- UIColor
- PokemonUtils
- Constants
- Id
- Name
- Front Default Picture
- Back Default Picture
- Height
- Weight
- Type(s)
- Abilities
- Stats
- Count
- Previous
- Next
- pokemonUILabelTests
- pokemonUIViewTests
- pokemonUIFontTests
- pokemonAPIServicesTests
- pokemonListANdDetailsTests
- iPhone full Support
- iPad full support
- Fetch Pokemons from API
- Allow dependency injection
- Pagination
- Support multiple device orientation
- Add app icon
- Set app launch screen
- Accessibility
- Add UITesting
- Add UnitTesting
- Show loading on last cell when the app wait for the service response
- Search pokemon by ID
- Search pokemon by Name
- Show Pokémon Height information
- Show Pokémon Weight information
- Show Pokémon Abilities Information
- Show Pokémon Basic Stat Information
- Show Pokémon Type(s) information
- Show Pokémon front and back image
- Swipe between Pokémon details (previous and next)
- Hide search bar when scrolling collection view
- Save favorite Pokémons
- Show Pokémon moves information
- Add custom loading animation
- Add custom popup
- Add animation when user click on pokemon to get more detail