mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-08-26 03:59:39 +00:00
fix: correct order of dispose method calls in SceneRoomsTabBarDevicesView
This commit is contained in:
@ -55,8 +55,8 @@ class _SceneRoomsTabBarDevicesViewState extends State<SceneRoomsTabBarDevicesVie
|
|||||||
@override
|
@override
|
||||||
void dispose() {
|
void dispose() {
|
||||||
super.dispose();
|
super.dispose();
|
||||||
_tabController.dispose();
|
|
||||||
_tabController.removeListener(() {});
|
_tabController.removeListener(() {});
|
||||||
|
_tabController.dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
void _handleTabSwitched() {
|
void _handleTabSwitched() {
|
||||||
|
Reference in New Issue
Block a user