caduandrade / tabbed_view

Widget inspired by the classic Desktop-style tab component.
MIT License
49 stars 16 forks source link

Initial Tab #12

Closed pndaza closed 2 years ago

pndaza commented 2 years ago

is there initialtab for TabContoller like PageView's PageController?.

caduandrade commented 2 years ago

Hi @pndaza ! Sorry for the delay in responding, busy week.

You can use the selectedIndex in the initState before adding any listeners to the controller (just to make sure it doesn't notify something at the wrong time).

Example:

_controller.selectedIndex = 1;
pndaza commented 2 years ago

Thanks for great package.