pompo96 982a910ee3 Bugfixes:
Cant join team if in team
Profile page resets properly
Post button spam no longer leads to crash due to duplicate calls

Housekeeping:
Made some name changes
moved homescreenpages from layout -> homeFeed
Deleted 2 unused classes, authService.dart and old loginPage.dart then renamed startPage.dart -> loginPage.dart

Set up openApi on backend and added URL in Service classes
2025-05-25 11:40:03 +02:00

12 lines
229 B
Dart

import 'package:flutter/material.dart';
class FeedPage extends StatelessWidget {
const FeedPage({super.key});
@override
Widget build(BuildContext context) {
return const Center(
child: Text('Feed'),
);
}
}