# π° PostListApp β Creative News Feed with .NET MAUI
## π± Overview
**PostListApp** is a cross-platform mobile application built using **.NET MAUI** that fetches and displays posts from the **JSONPlaceholder API**.
The app showcases asynchronous data fetching, JSON deserialization, and clean UI data binding β making it both **educational** and **visually appealing**.
## π Features
β Fetches posts dynamically from the **JSONPlaceholder API**
β Displays posts in a **CollectionView** with images, titles, and descriptions
β Implements **asynchronous programming (async/await)** for a smooth UI
β Click any post to view detailed information
β Beautiful **card-based layout** with rounded corners and shadows
β Works seamlessly on **Android**, **Windows**, and **iOS**
## βοΈ Technologies Used
- **.NET MAUI** (Cross-platform framework)
- **C#**
- **XAML** for UI design
- **JSONPlaceholder REST API**
- **Newtonsoft.Json** for JSON deserialization
- **Visual Studio 2022**
## π API Used
π‘ **Endpoint:** [https://jsonplaceholder.typicode.com/posts](https://jsonplaceholder.typicode.com/posts)
**Request Method:** GET
**Response Format:** JSON
Each post contains:
{
"userId": 1,
"id": 1,
"title": "Sample Title",
"body": "Sample post content..."
}