dash_chat icon indicating copy to clipboard operation
dash_chat copied to clipboard

Avatar_Container

Open Arnold-Papplic opened this issue 4 years ago • 1 comments

Please fix the second Text ! If user.name.length >9 then use '' , but this is wrong.

Column(children: <Widget>[ Center( child: Text(user.name == null || user.name.isEmpty ? '' : user.name.substring( 0, user.name.length > 9 ? 9 : user.name.length - 1))), Center( child: Text((user.name == null || user.name.isEmpty) && user.name.length > 9 ? '' : user.name.substring( 9, user.name.length > 18 ? 18 : user.name.length - 1))) ]),

Arnold-Papplic avatar Dec 14 '20 08:12 Arnold-Papplic

@Arnold-Papplic I think this repo can not be run at all... lots of syntax errors in code.

lucasjinreal avatar Dec 17 '20 13:12 lucasjinreal