From 7df945aa5aa47cbb9c0c65b83b03b5fead68de39 Mon Sep 17 00:00:00 2001 From: Nilesh <19304+nileshtrivedi@users.noreply.github.com> Date: Mon, 6 Jun 2022 14:48:29 +0100 Subject: [PATCH] Fix #24 Added a Settings screen --- src/App.svelte | 7 +++++++ src/Settings.svelte | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 src/Settings.svelte diff --git a/src/App.svelte b/src/App.svelte index e1f11f7..5889c47 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -10,6 +10,7 @@ import FormatDetail from "./FormatDetail.svelte" import CourseList from "./CourseList.svelte" import ItemDetail from "./ItemDetail.svelte" + import Settings from "./Settings.svelte" import AdvancedSearch from "./AdvancedSearch.svelte" import NavButtonWithLabel from './NavButtonWithLabel.svelte'; import { SearchIcon, LibraryIcon, ViewGridIcon, GiftIcon, CogIcon, BookmarkAltIcon, BookmarkIcon, SupportIcon } from "@rgossiaux/svelte-heroicons/outline"; @@ -87,6 +88,8 @@ {:else if currentView === "/finishedlearning"} + {:else if currentView === "/settings"} + {/if} @@ -124,6 +127,10 @@ + + diff --git a/src/Settings.svelte b/src/Settings.svelte new file mode 100644 index 0000000..9c8aa48 --- /dev/null +++ b/src/Settings.svelte @@ -0,0 +1,45 @@ + + +
+ +
+
+
+
+

Settings

+

+
+
+
+
+
+
+
+ + +
+ + +
+ +
+
+
+ +
+
+
+
+
+
+ + + +
\ No newline at end of file