我想在颤振小部件文本中显示文本“ellen 112@yahoo.com”,但出现的只是 ellen@yahoo.com。如果文本字母与出现电子邮件的 email112mail 等数字组合,也会发生同样的事情。发生了什么 ?
这是代码
Positioned(
top: 180,
left: 40,
right:40,
child:
Card(
color: Colors.yellow,
child: Column(
children: <Widget>[
ListView(
shrinkWrap: true,
children: <Widget>[
ListTile(
leading: Icon(Icons.mail, color: Color (0xff00a8f3) ,),
title: Text("Email112mail",style: TextStyle(
color: Color (0xff00a8f3),
fontFamily: 'Hello Christmas',
fontWeight: FontWeight.w900,
fontSize: 14,
),),
subtitle: Text('ellen112@yahoo.com',style: TextStyle(
color: Color (0xff538f9d),
fontFamily: 'Hello Christmas',
fontWeight: FontWeight.w900,
fontSize: 14,
),),
),
ListTile(
leading: Icon(Icons.phone_android,color: Color (0xff00a8f3) ,),
title: Text("Mobile",style: TextStyle(
color: Color (0xff00a8f3),
fontFamily: 'Hello Christmas',
fontWeight: FontWeight.w900,
fontSize: 14,
),),
subtitle: Text(mobile,style: TextStyle(
color: Color (0xff538f9d),
fontFamily: 'FRESH_TEA-DEMO',
fontWeight: FontWeight.w900,
fontSize: 14,
),),
),
ListTile(
leading: Icon(Icons.phone,color: Color (0xff00a8f3) ,),
title: Text("Phone",style: TextStyle(
color: Color (0xff00a8f3),
fontFamily: 'Hello Christmas',
fontWeight: FontWeight.w900,
fontSize: 14,
),),
subtitle: Text(phone,style: TextStyle(
color: Color (0xff538f9d),
fontFamily: 'FRESH_TEA-DEMO',
fontWeight: FontWeight.w900,
fontSize: 14,
),),
),
ListTile(
leading: Icon(Icons.cake,color: Color (0xff00a8f3) ,),
title: Text("Birthdate",style: TextStyle(
color: Color (0xff00a8f3),
fontFamily: 'Hello Christmas',
fontWeight: FontWeight.w900,
fontSize: 14,
),),
subtitle: Text(birthDate,style: TextStyle(
color: Color (0xff538f9d),
fontFamily: 'FRESH_TEA-DEMO',
fontWeight: FontWeight.w900,
fontSize: 14,
),),
),
ListTile(
leading: Icon(Icons.favorite,color: Color (0xff00a8f3) ,),
title: Text("Favorite",style: TextStyle(
color: Color (0xff00a8f3),
fontFamily: 'Hello Christmas',
fontWeight: FontWeight.w900,
fontSize: 14,
),),
subtitle: Text(favorite,style: TextStyle(
color: Color (0xff538f9d),
fontFamily: 'Hello Christmas',
fontWeight: FontWeight.w900,
fontSize: 14,
),),
),
],
)
],
),
),
)
这是输出