Menu
Your Cart

Mibro GS Pro Smartwatch

Mibro GS Pro Smartwatch
Mibro GS Pro Smartwatch
Mibro GS Pro Smartwatch
-11 %
Mibro GS Pro Smartwatch
Mibro GS Pro Smartwatch
Mibro GS Pro Smartwatch
Mibro GS Pro Smartwatch
  • Price: TK 7,699/-
  • special price: TK 6,870/-
  • Stock: In Stock
  • Model: GS Pro
TK 6,870/-
TK 7,699/-
Ex Tax: TK 6,870/-

Key Features

    • Model: GS Pro
    • Battery: 460mAh
    • Connectivity: BLE5.3
    • Supported Apps/ Software Mibro Fit
    • Warranty: 06 Month
    Specification
    General Feature
    BrandXiaomi
    ModelGS Pro
    Technical Info
    Battery460mAh
    ConnectivityBLE5.3
    Others
    Supported Apps/ SoftwareMibro Fit
    Physical Attributes
    ColorBlack
    Dimensionsφ=46.5mm, T=11.8mm
    Weight39.82g (without strap) 58.22g (including silicone strap) 46.60g (including woven strap)
    Warranty Information
    Warranty06 Month
    Description

    Mibro GS Pro Smartwatch

    The Mibro GS Pro Smartwatch is a premium and rugged smartwatch designed for durability, advanced health tracking, and seamless connectivity. With a high-resolution AMOLED display and a sleek yet durable design, this smartwatch is perfect for fitness enthusiasts, professionals, and outdoor adventurers.

    Equipped with Bluetooth calling, the Mibro GS Pro allows you to make and receive calls directly from your wrist, providing convenience and hands-free communication. Stay ahead of your health with features like heart rate monitoring, SpO2 measurement, sleep tracking, and multiple sports modes, ensuring you stay on top of your fitness goals.

    With an ultra-long battery life, the Mibro GS Pro delivers extended usage on a single charge, making it ideal for long trips and daily use. Its 5ATM water resistance ensures durability, allowing you to wear it confidently in various conditions, including swimming and outdoor adventures.

    Packed with smart features such as notifications, music control, and a lightweight yet rugged build, the Mibro GS Pro is the perfect smartwatch for those looking for a stylish, feature-packed, and reliable wearable.


    Buying Suggestions from Dear IT Solution

    Purchase the Mibro GS Pro Smartwatch from Dear IT Solution at the best price in Bangladesh. As a best quality product insured in Bangladesh, this smartwatch guarantees durability, top-tier performance, and reliable connectivity. Order now and take your smartwatch experience to the next level!





    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};