
I created a return icon while designing, but this text appeared on it. What is this text and how do I solve this?
There does not seem to be an error in my code, I searched the internet but could not find any results.I don't know how to investigate.
Container(
alignment: Alignment.center,
// back icon
height: Get.height * 0.0494,
width: Get.width * 0.1,
decoration: BoxDecoration(
color: const Color(0xff2a2a2a),
borderRadius: BorderRadius.circular(10),
),
child: SuperTextIconButton(
'Back',
onPressed: () => Get.back(),
getIcon: Icons.arrow_back_ios_new,
buttonColor: const Color(0xff7ED550),
),
)
My opinion is try to Wrap your
SuperTextIconButtonwith aFittedBox.if you want to know more details, refer to this documentation about
FittedBox