Files
1356/lifetimer/lib/features/social/presentation/social_feed_screen.dart
T
2026-01-03 18:35:35 +01:00

18 lines
368 B
Dart

import 'package:flutter/material.dart';
class SocialFeedScreen extends StatelessWidget {
const SocialFeedScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Social'),
),
body: const Center(
child: Text('Social Feed - Coming Soon'),
),
);
}
}