Skip to content
16 changes: 16 additions & 0 deletions home_page.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import 'package:flutter/material.dart';
import 'package:auto_route/auto_route.dart';

@RoutePage()
class HomePage extends StatelessWidget {
const HomePage({super.key});

@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text('Home Page'),
),
);
}
}
16 changes: 16 additions & 0 deletions login_page.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import 'package:auto_route/auto_route.dart';
import 'package:flutter/material.dart';

@RoutePage()
class LoginPage extends StatelessWidget {
const LoginPage({super.key});

@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text('Login Page'),
),
);
}
}
20 changes: 20 additions & 0 deletions problem_page.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
class ProblemPage extends StatelessWidget {
final String title;
final String description;

const ProblemPage({super.key, required this.title, required this.description});

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(title),
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Text(description),
),
);
}
}
34 changes: 34 additions & 0 deletions profile_page.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import 'package:flutter/material.dart';

class ProfilePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("Profile")),
body: SingleChildScrollView(
child: Column(
children: [
SizedBox(height: 20),
CircleAvatar(
radius: 50,
backgroundImage: NetworkImage('https://example.com'),
),
Text("User Name", style: TextStyle(fontSize: 22, fontWeight: FontWeight.bold)),
Text("user@email.com", style: TextStyle(color: Colors.grey)),
Divider(),
ListTile(
leading: Icon(Icons.settings),
title: Text("Settings"),
onTap: () {},
),
ListTile(
leading: Icon(Icons.logout),
title: Text("Logout"),
onTap: () {},
),
],
),
),
);
}
}
16 changes: 16 additions & 0 deletions signup_page.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import 'package:flutter/material.dart';
import 'package:auto_route/auto_route.dart';

@RoutePage()
class SignUpPage extends StatelessWidget {
const SignUpPage({super.key});

@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text('Sign Up Page'),
),
);
}
}
8 changes: 8 additions & 0 deletions teams/Unstuck.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Team Name : Unstuck

## Developers

* [Sarah Gaskov](https://github.com/sarah-gaskov)
* [Johanna Alvarado](https://github.com/jkalvarado)
* [Kyle Mullen](https://github.com/KyleMullen123)
* [Adian Torres](https://github.com/AdianTor)