↧
Answer by Er1 for Flutter - undefined name of class parameter
You should call the constructor like this, or using your own variables:return Row( mainAxisAlignment: MainAxisAlignment.end, children: [ _ChangePageItem('A String', true, 0, (){}), paginationsItems(),...
View ArticleFlutter - undefined name of class parameter
I'm having difficulties in this part of my code. It looks preety simple, however there is one thing I just don't understand.This is my class, it looks rather basic:class _ChangePageItem extends...
View Article