From 3f7de2fa8f1171ceb40c19de9c49d6e815a4b357 Mon Sep 17 00:00:00 2001
From: Moe <moe@chocola.dev>
Date: Mon, 16 May 2022 08:34:33 +0700
Subject: [PATCH] Remove back button

---
 lib/screens/cart.dart     | 1 +
 lib/screens/products.dart | 1 +
 2 files changed, 2 insertions(+)

diff --git a/lib/screens/cart.dart b/lib/screens/cart.dart
index fd82cb1..6a95e26 100644
--- a/lib/screens/cart.dart
+++ b/lib/screens/cart.dart
@@ -42,6 +42,7 @@ class _CartState extends State<Cart> {
         title: const Text('Cart'),
         centerTitle: true,
         backgroundColor: const Color(0xff212226),
+        automaticallyImplyLeading: false,
       ),
       body: Container(
         margin: const EdgeInsets.only(bottom: 80.0),
diff --git a/lib/screens/products.dart b/lib/screens/products.dart
index b09fedc..f1b548e 100644
--- a/lib/screens/products.dart
+++ b/lib/screens/products.dart
@@ -21,6 +21,7 @@ class _ProductsState extends State<Products> {
         title: const Text('Nekoya'),
         centerTitle: true,
         backgroundColor: const Color(0xff212226),
+        automaticallyImplyLeading: false,
       ),
       body: LayoutBuilder(
         builder: (context, dimension) {