Merge pull request 'Squelette page' (#4) from Pages into master

Reviewed-on: #4
pull/6/head
Leni BEAULATON 2 months ago
commit ee8220c9d2

@ -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 {}
}
}
}

@ -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 {}
}
}
}

@ -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 {}
}
}
}

@ -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 {}
}
}
}

@ -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 {}
}
}
}

@ -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 {}
}
}
}

@ -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 {}
}
}
}

@ -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 {}
}
}
}
Loading…
Cancel
Save