diff --git a/assets/icons/amazon.svg b/assets/icons/amazon.svg
new file mode 100644
index 0000000..ef7d110
--- /dev/null
+++ b/assets/icons/amazon.svg
@@ -0,0 +1,3 @@
+
diff --git a/lib/main.dart b/lib/main.dart
index 1edea67..5be5953 100644
--- a/lib/main.dart
+++ b/lib/main.dart
@@ -25,7 +25,6 @@ class MyApp extends StatefulWidget {
static const Color _selectedColor = Color.fromRGBO(36, 36, 36, 1);
static const Color _unselectedColor = Color.fromRGBO(144, 144, 144, 1);
- @override
State createState() => _MyAppState();
}
@@ -109,9 +108,13 @@ class _MyAppState extends State {
}
}
+
+
+
+
// Use to seed wishlists for new user
// final ApiClient client = ApiClient();
-
+//
// const String startPersonalWishlistMutations = r'''
// mutation startPersonalWishlist($dto: WishlistCreateDtoInput!) {
// startPersonalWishlist(dto: $dto) {
@@ -136,4 +139,4 @@ class _MyAppState extends State {
// // .then((result) => print(jsonEncode(result)));
// // sleep(Duration(milliseconds: 100));
// // }
-//
+//
\ No newline at end of file
diff --git a/lib/models/product.dart b/lib/models/product.dart
new file mode 100644
index 0000000..df75e1e
--- /dev/null
+++ b/lib/models/product.dart
@@ -0,0 +1,25 @@
+class Product {
+ Product({
+ required this.id,
+ required this.name,
+ required this.url,
+ required this.imageUrls,
+ required this.rating,
+ required this.price
+});
+
+ String id;
+ String name;
+ String url;
+ List imageUrls;
+ double rating;
+ double price;
+
+ Product.fromJson(Map json)
+ : id = json['id'] as String,
+ name = json['name'] as String,
+ url = json['url'] as String,
+ imageUrls = json['imageUrls'] as List,
+ rating = json['rating'] as double,
+ price = json['name'] as double;
+}
\ No newline at end of file
diff --git a/lib/screens/cart.dart b/lib/screens/cart.dart
new file mode 100644
index 0000000..015f790
--- /dev/null
+++ b/lib/screens/cart.dart
@@ -0,0 +1,225 @@
+import 'package:flutter/material.dart';
+import 'package:flutter_svg/svg.dart';
+import 'package:graphql/client.dart';
+import 'package:url_launcher/url_launcher.dart';
+import 'package:shopping_assistant_mobile_client/models/product.dart';
+import 'package:shopping_assistant_mobile_client/network/api_client.dart';
+
+
+class CartScreen extends StatefulWidget {
+ CartScreen({super.key, required this.wishlistId});
+
+ final String wishlistId;
+
+ @override
+ State createState() => _CartScreenState(wishlistId: wishlistId);
+}
+
+class _CartScreenState extends State {
+ _CartScreenState({required this.wishlistId});
+
+ var client = ApiClient();
+
+ final String wishlistId;
+
+ late Future _productsFuture;
+ late List _products;
+
+ @override
+ void initState(){
+ super.initState();
+ _productsFuture = _fetchProducts();
+ }
+
+ Future _fetchProducts() async {
+ const String productsPageFromPersonalWishlistQuery = r'''
+ query ProductsPageFromPersonalWishlist($wishlistId: String!, $pageNumber: Int!, $pageSize: Int!) {
+ productsPageFromPersonalWishlist(
+ wishlistId: $wishlistId,
+ pageNumber: $pageNumber,
+ pageSize: $pageSize
+ ) {
+ items {
+ id
+ url
+ name
+ rating
+ price
+ imagesUrls
+ }
+ }
+}''';
+
+ QueryOptions queryOptions = QueryOptions(
+ document: gql(productsPageFromPersonalWishlistQuery),
+ variables: {
+ 'wishlistId': wishlistId,
+ 'pageNumber': 1,
+ 'pageSize': 10,
+ });
+
+ var result = await client.query(queryOptions);
+ print(result);
+
+ _products = List