Small fixes

This commit is contained in:
zontreck 2024-05-17 17:40:04 -07:00
parent a54d0e4c0f
commit 043b06dedc
8 changed files with 2678 additions and 93 deletions

View file

@ -16,10 +16,10 @@ class MainPage extends StatelessWidget {
routes: {
"/": (context) => const HomePage(),
"/opensim": (context) => const OpenSimPage(),
"/opensim/register": (context) => RegisterAccountPage(),
"/opensim/login": (context) => LoginAccountPage(),
"/portfolio": (context) => PortfolioPage(),
"/portfolio/coun": (context) => CardsOfUtterNonsense()
"/opensim/register": (context) => const RegisterAccountPage(),
"/opensim/login": (context) => const LoginAccountPage(),
"/portfolio": (context) => const PortfolioPage(),
"/portfolio/coun": (context) => const CardsOfUtterNonsense()
},
theme: ThemeData.dark(),
);
@ -87,9 +87,9 @@ class HomePageState extends State<HomePage> {
},
),
ListTile(
title: Text("P O R T F O L I O"),
subtitle: Text("View my work"),
leading: Icon(Icons.book_online),
title: const Text("P O R T F O L I O"),
subtitle: const Text("View my work"),
leading: const Icon(Icons.book_online),
onTap: () {
Navigator.pushNamed(context, "/portfolio");
},