# 📰 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..."
}