From d02d77589fcce93bd0b7c22e23119c534e9849f0 Mon Sep 17 00:00:00 2001 From: zontreck Date: Tue, 1 Apr 2025 03:18:24 -0700 Subject: [PATCH] Push new product page to sidebar --- lib/pages/Main.dart | 9 ++++++++- lib/pages/shitbot.dart | 16 ++++++++++------ 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/lib/pages/Main.dart b/lib/pages/Main.dart index 3d8612f..bd1d3d1 100644 --- a/lib/pages/Main.dart +++ b/lib/pages/Main.dart @@ -80,7 +80,7 @@ class HomePageState extends State { children: [ Text("Zontreck.com"), Text(""), - Text("Copyright 2024"), + Text("Copyright 2025"), Text("Piccari Creations") ], )), @@ -109,6 +109,13 @@ class HomePageState extends State { await launchUrl( 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"); + }, ) ], ), diff --git a/lib/pages/shitbot.dart b/lib/pages/shitbot.dart index 023bb71..1bea78f 100644 --- a/lib/pages/shitbot.dart +++ b/lib/pages/shitbot.dart @@ -13,15 +13,19 @@ class ShitBotProductPage extends StatelessWidget { body: Padding( padding: EdgeInsets.all(8), child: SingleChildScrollView( - child: Column( - children: [ - Center( - child: Text( + child: Center( + child: Column( + children: [ + Text( "APRIL FOOLS", 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), + ) + ], + ), ), ), ),