diff --git a/lib/views/after_auth_screens/profile/profile_page.dart b/lib/views/after_auth_screens/profile/profile_page.dart index d573bbfea..cee94e28d 100644 --- a/lib/views/after_auth_screens/profile/profile_page.dart +++ b/lib/views/after_auth_screens/profile/profile_page.dart @@ -40,7 +40,7 @@ class ProfilePage extends StatelessWidget { sId: '123', description: 'This is a sample post description.', createdAt: DateTime.now().subtract(const Duration(days: 2)), - imageUrl: 'https://example.com/sample_image.jpg', + imageUrl: 'https://images.unsplash.com/photo-1701725313832-d8f7fadb3006?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwzfHx8ZW58MHx8fHx8', base64String: 'base64encodedstring', videoUrl: 'https://example.com/sample_video.mp4', creator: User( @@ -242,9 +242,7 @@ class ProfilePage extends StatelessWidget { const Tab(text: 'Tasks'), ], views: [ - Container( - child: IndividualPostView(post: samplePost), - ), + IndividualPostView(post: samplePost), Container( color: Theme.of(context).colorScheme.background, ),