wesal/lib/screens/pages/feed_page.dart

23 lines
513 B
Dart

import 'package:flutter/material.dart';
class FeedPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Feed'),
backgroundColor: Color(0xFF6A4C93),
foregroundColor: Colors.white,
),
body: Center(
child: Text(
'This is the Feed Page',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.w500,
),
),
),
);
}
}