flutter_pagewise
flutter_pagewise copied to clipboard
Creating custom Pagewise Widget
Hello, I have a problem creating a custom pagewise widget. I have checked examples and the problem is that I can not access state properties, because they are private. Are there any plans to fix this?
class Foo<T> extends Pagewise<T> {
Foo()
: super(builder: (PagewiseState<T> state) {
return ListView.builder(
itemCount: state._itemCount,
itemBuilder: state._itemBuilder,
);
});
}