flutter-expandable icon indicating copy to clipboard operation
flutter-expandable copied to clipboard

Is it possible to expand by code?

Open zhouhao27 opened this issue 4 years ago • 2 comments

I'm wondering if it's possible to expand by code?

zhouhao27 avatar Jun 04 '20 04:06 zhouhao27

@zhouhao27 It can be done using ExpandableController

misosvec avatar Aug 05 '20 13:08 misosvec

You can use this code ` ExpandableController expandableController = ExpandableController();

void _expand() { expandableController.expanded = true; }`

and invoke _expand method in build() or initState()

also you have to add _expandableController variable to controller property:

ExpandablePanel( controller: _expandableController, ),

mod-ali avatar Aug 14 '20 21:08 mod-ali