Push new product page to sidebar
This commit is contained in:
parent
7a5ecf6f36
commit
d02d77589f
2 changed files with 18 additions and 7 deletions
|
@ -80,7 +80,7 @@ class HomePageState extends State<HomePage> {
|
||||||
children: [
|
children: [
|
||||||
Text("Zontreck.com"),
|
Text("Zontreck.com"),
|
||||||
Text(""),
|
Text(""),
|
||||||
Text("Copyright 2024"),
|
Text("Copyright 2025"),
|
||||||
Text("Piccari Creations")
|
Text("Piccari Creations")
|
||||||
],
|
],
|
||||||
)),
|
)),
|
||||||
|
@ -109,6 +109,13 @@ class HomePageState extends State<HomePage> {
|
||||||
await launchUrl(
|
await launchUrl(
|
||||||
Uri(host: "ci.zontreck.com", port: 443, scheme: "https"));
|
Uri(host: "ci.zontreck.com", port: 443, scheme: "https"));
|
||||||
},
|
},
|
||||||
|
),
|
||||||
|
ListTile(
|
||||||
|
title: Text("S H I T B O T"),
|
||||||
|
subtitle: Text("ShitBot Promotional Materials"),
|
||||||
|
onTap: () async {
|
||||||
|
await Navigator.pushNamed(context, "/shitbot");
|
||||||
|
},
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
@ -13,18 +13,22 @@ class ShitBotProductPage extends StatelessWidget {
|
||||||
body: Padding(
|
body: Padding(
|
||||||
padding: EdgeInsets.all(8),
|
padding: EdgeInsets.all(8),
|
||||||
child: SingleChildScrollView(
|
child: SingleChildScrollView(
|
||||||
|
child: Center(
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
Center(
|
Text(
|
||||||
child: Text(
|
|
||||||
"APRIL FOOLS",
|
"APRIL FOOLS",
|
||||||
style: TextStyle(fontSize: 64),
|
style: TextStyle(fontSize: 64),
|
||||||
),
|
),
|
||||||
|
Text(
|
||||||
|
"If you fell for this joke, please contact Aria on Discord to receive a random free product. Thank you.",
|
||||||
|
style: TextStyle(fontSize: 24),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue