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