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
12 lines
229 B
Dart
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'),
|
|
);
|
|
}
|
|
} |