The chipset details of the Pro option had also been revealed earlier. Now, Poco has confirmed the battery size of the upcoming Poco X7 Pro 5G model. Several leaks and reports have previously hinted at the expected key specifications of the Poco Meanwhile, a promotional poster on the Flipkart (app) microsite of the handset confirms that it will support 90W wired fast charging.The Indian variant of the Poco X7 Pro 5G is teased to launch in the under Rs. 30,000 segments. It is confirmed to come with support for LPDDR5x RAM, UFS 4.0 onboard storage, AI temperature control, and “Wildboost optimization 3.0.”An earlier post revealed that the handset will be powered by a MediaTek Dimensity 8400-Ultra SoC. The phone’s design teaser Poco suggests that it will get a 50-megapixel OIS-supported dual rear camera unit. The primary camera is expected to use a Sony IMX882 sensor. X7 Pro 5G is confirmed to launch in India on January 9 at 5:30pm IST Globally, Poco has also teased the launch of a Poco X7 Pro Iron Man Edition, to be unveiled on the same day.Notably, no features of the base. Poco X7 5G has been confirmed yet. It is tipped to get a 50-megapixel primary camera sensor. 20-megapixel selfie shooter.The Poco X7 Pro 5G could sport a 6.67-inch CrystalRez 1.5K AMOLED screen. The vanilla Poco with 45W wired fast charging support. Both phones are expected to get IP68-rated builds for dust and water resistance. For the latest tech news and reviews, follow Gadgets 360 on X, Facebook, WhatsApp, Threads and Google News. For the latest videos on gadgets and tech, subscribe to our YouTube channel. If you want to know everything about top influencers, follow our in-house Who’sThat360 on Instagram and YouTube. Apple May Delay 2nm Chipsets for iPhone 17 Pro As TSMC Struggles With Wafer Yield: Report
Credit-Read More
// 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);
Random Latest Posts Display // 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();