Skip to content
Popup Example

Earn From News Kiosk

Poco X7 Pro Iron Man Edition With Marvel-Inspired Design, Dimensity 8400-Ultra SoC Launched

January 10, 2025
Poco X7 Pro Iron Man Edition With Marvel-Inspired Design, Dimensity 8400-Ultra SoC Launched

News kiosk- Are You Making These Common Mistakes? Click below to Learn More

Secret That Everyone Is Talking About

News kiosk Latest Posts

If you want to dive deeper into the topic, click on Read More:

Gardening with Ecorganicas: Your Source for Organic Gardening Tips Financial potential with expert tips on budgeting, investing, and saving Unlock the Hidden Truth: Click to Reveal!
Poco X7 Pro Iron Man Edition With Marvel-Inspired Design, Dimensity 8400-Ultra SoC Launched

Poco X7 Pro Iron Man Edition was launched in the global markets on Thursday alongside the Poco X7 series. The phone arrives as a limited edition model of the standard Poco X7 Pro 5G with similar specifications. It has a custom case, design, user interface (UI), charging cable, and a sim ejector tool inspired by Marvel Cinematic Universe’s beloved superhero. The handset’s back panel sports red, black, and gold elements forming an arc reactor — the fictional power source which powers the Iron Man suit.Notably, it is the second collaboration between the Xiaomi sub-brand and the US-based entertainment company, following the launch of the Poco F6 Deadpool Limited Edition in India last year.Poco X7 Pro Iron Man Edition PricePoco X7 Pro Iron Man Edition price starts at $399 (roughly Rs. 34,000) for the 12GB + 512GB configuration. However, the company has announced the smartphone with an early bird price of $369 (roughly Rs. 32,000).It is available in select markets globally but there is no word about its availability in India.Poco X7 Pro Iron Man Edition SpecificationsPoco X7 Pro Iron Man Edition sports a 6.73-inch 1.5K flat AMOLED display with up to 120Hz refresh rate, a 240Hz touch sampling rate, 3,200nits peak brightness, and Corning Gorilla Glass 7i protection. The phone marks the global debut of the MediaTek Dimensity 8400 Ultra SoC which is paired with LPDDR5X RAM and UFS 4.0 storage. It runs on Xiaomi’s HyperOS 2 based on Android 15 and is slated to receive three years of OS and four years of security updates.For optics, there is a dual rear camera unit comprising a 50-megapixel Sony LYT-600 main sensor and an 8 -megapixel ultrawide shooter. It gets a 20-megapixel front-facing camera for selfies and video calls. Connectivity options for the Poco X7 Pro Iron Man Edition include 5G, Wi-Fi 6, Bluetooth 5.3, and a USB Type-C port. The phone is IP66+IP68+IP69 rated against dust and water ingress. It packs a 6,550mAh battery with 90W HyperCharge support which is claimed to charge it from zero to 100 percent in just 47 minutes.Affiliate links may be automatically generated – see our ethics statement for details.Catch the latest from the Consumer Electronics Show on Gadgets 360, at our CES 2025 hub.

Credit-Read More

News kiosk Latest Posts

// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts

// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);

// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);

// Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;

// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `

${description} Read more

`;

// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}

// Call the function to fetch and display the latest posts
fetchLatestPosts();