From 298530f74191b51219242f471c30b99902daf3ee Mon Sep 17 00:00:00 2001 From: beaulaton Date: Mon, 10 Feb 2025 15:02:28 +0100 Subject: [PATCH] Squelette page --- .../example/what_the_fantasy/FavoritePage.kt | 17 +++++++++++++ .../com/example/what_the_fantasy/LoginPage.kt | 17 +++++++++++++ .../example/what_the_fantasy/ProfilPage.kt | 24 +++++++++++++++++++ .../com/example/what_the_fantasy/QuizPage.kt | 17 +++++++++++++ .../com/example/what_the_fantasy/QuotePage.kt | 17 +++++++++++++ .../example/what_the_fantasy/SearchPage.kt | 17 +++++++++++++ .../example/what_the_fantasy/SignUpPage.kt | 17 +++++++++++++ .../what_the_fantasy/SubmitQuotePage.kt | 17 +++++++++++++ 8 files changed, 143 insertions(+) create mode 100644 What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/FavoritePage.kt create mode 100644 What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/LoginPage.kt create mode 100644 What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/ProfilPage.kt create mode 100644 What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/QuizPage.kt create mode 100644 What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/QuotePage.kt create mode 100644 What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SearchPage.kt create mode 100644 What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SignUpPage.kt create mode 100644 What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SubmitQuotePage.kt diff --git a/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/FavoritePage.kt b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/FavoritePage.kt new file mode 100644 index 0000000..682ac23 --- /dev/null +++ b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/FavoritePage.kt @@ -0,0 +1,17 @@ +package com.example.what_the_fantasy + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import com.example.what_the_fantasy.ui.theme.What_The_FantasyTheme + +class FavoritePage: ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContent { + What_The_FantasyTheme {} + } + } +} \ No newline at end of file diff --git a/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/LoginPage.kt b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/LoginPage.kt new file mode 100644 index 0000000..2cb77eb --- /dev/null +++ b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/LoginPage.kt @@ -0,0 +1,17 @@ +package com.example.what_the_fantasy + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import com.example.what_the_fantasy.ui.theme.What_The_FantasyTheme + +class LoginPage : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContent { + What_The_FantasyTheme {} + } + } +} \ No newline at end of file diff --git a/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/ProfilPage.kt b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/ProfilPage.kt new file mode 100644 index 0000000..cd7ddca --- /dev/null +++ b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/ProfilPage.kt @@ -0,0 +1,24 @@ +package com.example.what_the_fantasy + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.padding +import androidx.compose.material3.Scaffold +import androidx.compose.material3.Text +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.Preview +import com.example.what_the_fantasy.ui.theme.What_The_FantasyTheme + +class ProfilPage : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContent { + What_The_FantasyTheme {} + } + } +} \ No newline at end of file diff --git a/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/QuizPage.kt b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/QuizPage.kt new file mode 100644 index 0000000..c9d2a0c --- /dev/null +++ b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/QuizPage.kt @@ -0,0 +1,17 @@ +package com.example.what_the_fantasy + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import com.example.what_the_fantasy.ui.theme.What_The_FantasyTheme + +class QuizPage : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContent { + What_The_FantasyTheme {} + } + } +} \ No newline at end of file diff --git a/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/QuotePage.kt b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/QuotePage.kt new file mode 100644 index 0000000..73d2da0 --- /dev/null +++ b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/QuotePage.kt @@ -0,0 +1,17 @@ +package com.example.what_the_fantasy + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import com.example.what_the_fantasy.ui.theme.What_The_FantasyTheme + +class QuotePage : ComponentActivity(){ + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContent { + What_The_FantasyTheme {} + } + } +} \ No newline at end of file diff --git a/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SearchPage.kt b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SearchPage.kt new file mode 100644 index 0000000..bc5b8d4 --- /dev/null +++ b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SearchPage.kt @@ -0,0 +1,17 @@ +package com.example.what_the_fantasy + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import com.example.what_the_fantasy.ui.theme.What_The_FantasyTheme + +class SearchPage : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContent { + What_The_FantasyTheme {} + } + } +} \ No newline at end of file diff --git a/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SignUpPage.kt b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SignUpPage.kt new file mode 100644 index 0000000..8122360 --- /dev/null +++ b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SignUpPage.kt @@ -0,0 +1,17 @@ +package com.example.what_the_fantasy + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import com.example.what_the_fantasy.ui.theme.What_The_FantasyTheme + +class SignUpPage : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContent { + What_The_FantasyTheme {} + } + } +} \ No newline at end of file diff --git a/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SubmitQuotePage.kt b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SubmitQuotePage.kt new file mode 100644 index 0000000..e2dd0dd --- /dev/null +++ b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/SubmitQuotePage.kt @@ -0,0 +1,17 @@ +package com.example.what_the_fantasy + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import com.example.what_the_fantasy.ui.theme.What_The_FantasyTheme + +class SubmitQuotePage : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContent { + What_The_FantasyTheme {} + } + } +} \ No newline at end of file