I am using row widget in which i am showing text in a column. But issue is its overflow the width of text.
My code
Padding(
padding: const EdgeInsets.all(20.0),
child: Row(
children: [
Image.asset(
'images/[email protected]',
height: height * 0.045,
),
Padding(
padding: const EdgeInsets.only(left: 20),
child: Column(
children: [
Expanded(
child: Text(
'KMC-216, TOHEED COLONY, SECTOR 11, BLOCK L, ST6, KARACHI, ABC, XYZ, DMG',
style: TextStyle(
fontSize: 17,
fontFamily: 'UbuntuRegular',
),
)),
SizedBox(
height: height * 0.007,
),
Text(
'Home Adress',
style: TextStyle(
fontSize: 17,
fontFamily: 'UbuntuRegular',
color: Colors.grey),
),
],
),
)
],
),
),
I want to show text on left and not overflow

