-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproj3about.html
More file actions
21 lines (21 loc) · 1.89 KB
/
Copy pathproj3about.html
File metadata and controls
21 lines (21 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<title>Card Collection About</title>
</head>
<body>
<h2>About this Project</h2>
<p>This app allows you to browse cards throughout the history of the Pokemon Trading Card Game. You will be able to save future cards, too!</p>
<p>It makes use of the Pokemon TCG API, <a href="https://pokemontcg.io/">avaiable here</a>. It grabs the sets from there, as well as using a driver for Dart found in the documentation. </p>
<p>My implementation of multiple routes allows this application to work as-is until the API itself is shut down with updates. This is because the list of sets to search is dynamically loaded. </p>
<p>I am proud of my robust usage of sharedPreferences here to both store the last set searched, as well as storing the collection.</p>
<p>I wish I could properly search the API, but by the time I had gotten to the point where I was looking to granulate my search, I discovered that the Dart driver doesn't currently allow for it. (If you look into my search page widget, you can even see that I had it mostly implemented!)</p>
<p>While it isn't reviewed and merged in time for the submission deadline, I did start work on updating the Dart driver to allow for this type of thing <a href="https://github.com/PokemonTCG/pokemon-tcg-sdk-dart/pull/8">here.</a></p>
<p>It was also far too along in the process for me to rewrite using the REST API, as a lot of the widget building is dependent on the <code>PokemonCard</code> class provided by the driver.</p>
<p>I really feel that the app should have the ability to search cards by name, but like I said, it's mostly implemented, just removed for the time being.</p>
</body>
</html>