Flutter 在文本后添加图片
2025-11-10 本文已影响0人
河马过河
Container(
padding: EdgeInsetsDirectional.symmetric(vertical: 22.w,horizontal: 48.w),
alignment: Alignment.topCenter,
child: RichText(
textAlign: TextAlign.center,
text: TextSpan(
text: S.current.zp660,
style: TextStyle(
color: MyColor.color272C35,
fontSize: 42.sp,
fontWeight: FontWeight.w400,
),
children: [
const TextSpan(text: " "), // 添加空格
WidgetSpan(
child: LoadImage(
"ic_record_failed_emoji",
width: 54.w,
height: 54.w,
),
),
],
),
),
)