diff --git a/tabbar-navigation/src/main/java/ru/touchin/roboswag/components/tabbarnavigation/BottomNavigationFragment.kt b/tabbar-navigation/src/main/java/ru/touchin/roboswag/components/tabbarnavigation/BottomNavigationFragment.kt index bc1acf2..d514716 100644 --- a/tabbar-navigation/src/main/java/ru/touchin/roboswag/components/tabbarnavigation/BottomNavigationFragment.kt +++ b/tabbar-navigation/src/main/java/ru/touchin/roboswag/components/tabbarnavigation/BottomNavigationFragment.kt @@ -75,8 +75,10 @@ abstract class BottomNavigationFragment : Fragment() { data class TabData( val viewControllerClass: Class>, val viewControllerState: Parcelable, - //It can be useful in some cases when it is necessary to create ViewController - //with initial state every time when tab opens. + /** + * It can be useful in some cases when it is necessary to create ViewController + * with initial state every time when tab opens. + */ val saveStateOnSwitching: Boolean = true )