I was facing the issue of List out of range 0 : 1
I've fixed that issue for me which is at linkwell.dart & line no 255
if (wid != null && wid.isNotEmpty && wid.length!=1) {
if (wid[1] != '') {
if (value == links.last) {
var text = TextSpan(
text: wid[1],
style: style == null ? Helper.defaultTextStyle : style,
);
/// added
textSpanWidget.add(text);
} else {
t = wid[1];
}
}else{
t = "";
}
}
I request you to please have a look and add the condition which I mentioned above
I was facing the issue of List out of range 0 : 1
I've fixed that issue for me which is at linkwell.dart & line no 255
I request you to please have a look and add the condition which I mentioned above