Plus take an additional 5% off when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 129544156
ITEM: 1350198-008
Hit the pavement in style with the Under Armour Women's Fly By 2.0 Printed Running Shorts 3.5 in. The 100% polyester construction is durable and lightweight, and the soft-knit waistband has an internal drawstring for a secure fit. The reflective Under Armour™ logo adds a touch of sporty style and visibility, and the built-in briefs offer support through each stride.
Features and Benefits
100% polyester construction is lightweight and durable
Material wicks sweat and dries quickly
Breathable mesh panels encourage airflow
Built-in briefs for coverage
Soft-knit waistband with an internal drawstring
Crossover, shaped hem for a sleek finish
Reflective Under Armour™ logo adds visibility
Inseam: 3.5 inches
Specifications
Compression: No
Clothing Type: Athletic Shorts
Ventilated: Yes
UPF rating:
Shorts Length: Short
Material technology: Moisture-wicking
Inseam (in.): 3.5
Activity: Running
Material: 100% polyester
Gender: Women's
Size Range: Women's
Moisture Wicking: Yes
Water Resistant: No
Product Type: Shorts
Flame Resistant: No
Age Group: Adults'
Style: Running Shorts
Lining: Yes
Features: Moisture Wicking
What's in the Box
Under Armour Women's Fly By 2.0 Printed Running Shorts 3.5 in
User Manual
Shipping Restriction: Currently we are not able to ship this product to the following state(s).
NY
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();